Study/C언어
변수값 출력하기(variable.c)
zeroplus1
2013. 4. 29. 14:23
#include <stdio.h>
void main() {
int num1;
num1=5;
printf("%d \n", num1);
}