제목 : 2.1. 예제. 변수의 선언과 초기화 및 참조 : 변수선언초기화참조.c
글번호:
|
|
47
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2005/08/02 오전 12:03:31
|
조회수:
|
|
4678
|
//변수(Variable)
#include <stdio.h>
void main()
{
//[1] 변수 선언(Make)
int intNum;
char myChar;
//[2] 변수 초기화(대입)
intNum = 10;
myChar = 'z';
//[3] 변수 참조(사용)
printf("%d", intNum);
printf("%c", myChar);
}