Computer
002. 변수형 개념 배우기
Theo Kim
2010. 3. 8. 17:26
#include <stdio.h>
main()
{
main()
{
int x;
int y;
int z;
x = 1;
y = 2;
z = x + y;
printf("%d",z);
}int y;
int z;
x = 1;
y = 2;
z = x + y;
printf("%d",z);