본문 바로가기

개발자 모드/C언어

C언어 변수 및 상수

728x90

#include <stdio.h>

int main(void)
{

	int age = 12;

	printf("%d\n", age);

	age = 13;


	printf("%d\n", age);


	return 0;

}
​

 

 

 

728x90

'개발자 모드 > C언어' 카테고리의 다른 글

C언어 실수  (0) 2021.09.06
C언어 주석  (0) 2021.09.06
C언어 구조체 기초  (0) 2021.09.05
C언어 printf 문  (0) 2021.09.03
C언어 함수 주석 양식  (0) 2021.06.20