Chapter 5 printf() 与参数处理

现在让我们扩展“hello, world”(2)中的示例,将其中main()函数中printf的部分替换成这样

  1. #include <stdio.h>
  2. int main()
  3. {
  4. printf("a=%d; b=%d; c=%d", 1, 2, 3);
  5. return 0;
  6. };