Computer/초보자를 위한 C 언어 300제
002. 변수형 개념 배우기
Theo Kim
2010. 11. 12. 00:58
#include <stdio.h>
main()
{
int x;
int y;
int z;
x = 1;
y = 2;
z = x + y;
printf("%d",z);
}