Study/C언어

변수값 출력하기(variable.c)

zeroplus1 2013. 4. 29. 14:23

#include <stdio.h>

void main() {

int num1;

num1=5;

printf("%d \n", num1);

    }

'Study > C언어' 카테고리의 다른 글

입력값 출력하기(scanf.c)  (0) 2013.04.29
변수값 출력하기(print1.c)  (0) 2013.04.29
이름 출력하기(name.c)  (1) 2013.04.29
문자출력하기(hello.c)  (0) 2013.04.29
Dev c++  (4) 2013.04.15