메뉴 건너뛰기

Programing

C언어 게시판

정수형변수 출력

관리자2 2018.12.17 19:23 조회 수 : 158

#include <stdio.h>

 

int main() {

  

  int a=10;

  int b=20;

  int c=30;

  

  printf("a 는 %d이고 b 는 %d 이고 c 는 %d 입니다", a, b, c);

 

  return 0;

}

정수형 변수 출력하기
위로