본문 바로가기

Programming/C

예제 printf2.c


/* printf2.c */

#include <stdio.h> 

int main(void) 
{

 printf("My age : %d  \n", 20);
 printf("%d is my point  \n", 100);
 printf("Good \nmorning \neverybody\n"); 

 return 0; 
}