from_python_to_c_01
언어/python2018. 9. 9. 21:00
from ctypes import *
libc = cdll.msvcrt
libc.printf(b"hello world\n")
libc.printf(b"%d + %d = %d", 10, 20, 10+20)
'언어 > python' 카테고리의 다른 글
windll.kernel32.lstrcmpW (0) | 2018.09.11 |
---|---|
from_python_to_c_02 (0) | 2018.09.09 |
풀이_03 (0) | 2018.09.05 |
풀이2 (0) | 2018.09.05 |
풀이_01 (0) | 2018.09.05 |