1.Hello, World! 프로그램 작성
#include <stdio.h>
int main(void) {
printf("Hello, World!");
return 0;
}
2.기본적인 C 프로그램 구조
.c -> 컴파일 (.obj) -> 링커(~~.exe)
3.입출력과 주석
한줄 주석 : // 여러줄 주석 : /* */
입력 : scanf 출력 : prinf
4.변수와 자료형
변수 자료형
정수형 int, short, long, longlong %d, %lld
문자형 char %c, %s
실수형 float, double %f, %lf