[plain]
/* 程序頭部注釋開始(為避免提交博文中遇到的問題,將用於表明注釋的斜槓刪除了)
* 程序的版權和版本聲明部分
* All rights reserved.
* 文件名稱: txt.c
* 作 者: liuyongshui
* 問 題: 編寫程序,輸出各種基本類型所占用的字節長度。
* 問 題:
* 完成日期: 2013 年4 月10日
* 版 本 號: V1.0
*/
#include <stdio.h>
int main()
{
printf("在我的計算機上,各種基本類型所占用的字節長度:\n");
printf("int 站的字節長度:%d\n", sizeof(int));
printf("long 站的字節長度:%d\n", sizeof(long));
printf("char 站的字節長度:%d\n", sizeof(char));
printf("float 站的字節長度:%d\n", sizeof(float));
printf("double 站的字節長度:%d\n", sizeof(double));
return 0;
}
/* 程序頭部注釋開始(為避免提交博文中遇到的問題,將用於表明注釋的斜槓刪除了)
* 程序的版權和版本聲明部分
* All rights reserved.
* 文件名稱: txt.c
* 作 者: liuyongshui
* 問 題: 編寫程序,輸出各種基本類型所占用的字節長度。
* 問 題:
* 完成日期: 2013 年4 月10日
* 版 本 號: V1.0
*/
#include <stdio.h>
int main()
{
printf("在我的計算機上,各種基本類型所占用的字節長度:\n");
printf("int 站的字節長度:%d\n", sizeof(int));
printf("long 站的字節長度:%d\n", sizeof(long));
printf("char 站的字節長度:%d\n", sizeof(char));
printf("float 站的字節長度:%d\n", sizeof(float));
printf("double 站的字節長度:%d\n", sizeof(double));
return 0;
}