define 함수 정의 주의

2058 단어 함수.
코드
#include        <errno.h>

#include        <math.h>

#include        <stdio.h>

#include        <stdlib.h>

#include        <string.h>



#define ADD(x, y) x + y

#define MUL(x, y) x * y

/*

 * ===  FUNCTION  ======================================================================

 *         Name:  main

 *  Description:  main function

 * =====================================================================================

 */

        int

main ( int argc, char *argv[] )

{

   int a= 2, b = 3;

   printf ("
Program %d

", MUL(ADD(a, b), 5) ); // 2 + 3 * 5 17 return EXIT_SUCCESS; } /* ---------- end of function main ---------- */

 
output:
 program 17
끝나다

좋은 웹페이지 즐겨찾기