002. 변수형 개념 배우기002. 변수형 개념 배우기

Posted at 2010. 3. 8. 17:26 | Posted in Computer
#include <stdio.h>

main()
{
int x;
int y;
int z;

x = 1;
y = 2;

z = x + y;

printf("%d",z);
}

//