본문 바로가기

컴퓨터/C

C hello, world!

#include <stdio.h>
int main()
{
  printf("Hello, world!\n");
  return 0;
}

'컴퓨터 > C' 카테고리의 다른 글

C printf()  (0) 2022.10.14
C array 1차원 배열과 포인터  (0) 2022.10.14
C 변수 scope  (2) 2022.09.08
C function 함수  (0) 2022.09.02
C goto  (0) 2022.09.01