본문 바로가기

Programming/C

예제 printf1.c

/* printf1.c */

#include <stdio.h> 

int main(void) 
{

 printf("Hello, Everybody \n");
 printf("%d\n", 1234);
 printf("%d %d \n", 10, 20); 

 return 0; 
}