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

Posted at 2010. 11. 12. 00:58 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>

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

	x = 1;
	y = 2;

	z = x + y;

	printf("%d",z);
}
//