2.1小节代码 显示双关语。
//This is a comment
//Author:King
//Time:2020/12/4
//Reference:C Programming:A Modern Approach,Second Edition
/***************************************************************
2.1小节代码 显示双关语
****************************************************************/
#include <stdio.h>
int main(void)
{
printf("To C, or not to C:that is the question.\n");
return 0;
}