printf( ) 함수의 경우 printf("Helle World\n"); 라고 쓰면 인자가 1개 이다. printf("%d\n", 10); 라고 쓰면 인자가 2개 이다. printf("%d, %d\n", 10, 20); 라고 쓰면 인자가 3개이다. 이런식으로 인자가 변하는 함수는 어떻게 구현 되어있을까? 또는 어떻게 구현할 수 있을까? 먼저.... #include // args는 고정 매개변수 void printfMy(int args, ...) { printf("%d ", args); } int main() { printfMy(1, 10); printfMy(2, 10, 20); printfMy(3, 10, 20, 30); printfMy(4, 10, 20, 30, 40); return 0; } 이와 같..