C語言程式設計-現代方法 第二版 2.1小節 顯示雙關語

我要的暱稱被註冊了發表於2020-12-12

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;
}

 

相關文章