資源簡介
C語言入門經典(第5版)源代碼,完整版
代碼片段和文件信息
//?Program?8.1?Scoping?out?scope
#include?
int?main(void)
{
??int?count1?=?1;???????????????????????????????//?Declared?in?outer?block
??do
??{
????int?count2?=?0;?????????????????????????????//?Declared?in?inner?block
????++count2;
????printf(“count1?=?%d?????count2?=?%d\n“?count1?count2);
??}?while(?++count1?<=?5);
??//?count2?no?longer?exists
??printf(“count1?=?%d\n“?count1);
??return?0;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????????156??2013-02-20?12:10??Chapter?1\program1_01.c
?????文件?????????166??2013-02-20?12:10??Chapter?1\program1_02.c
?????文件?????????492??2013-02-20?12:10??Chapter?1\program1_03.c
?????文件?????????204??2013-02-20?12:10??Chapter?1\program1_04.c
?????文件?????????209??2013-02-20?12:10??Chapter?1\program1_05.c
?????文件????????1404??2013-02-20?12:10??Chapter?11\program11_01.c
?????文件????????1894??2013-02-20?12:10??Chapter?11\program11_02.c
?????文件????????2020??2013-02-20?12:10??Chapter?11\program11_03.c
?????文件????????2861??2013-02-20?12:10??Chapter?11\program11_04.c
?????文件????????2790??2013-02-20?12:10??Chapter?11\program11_05.c
?????文件????????3820??2013-02-20?12:10??Chapter?11\program11_06.c
?????文件????????4611??2013-02-20?12:10??Chapter?11\program11_07.c
?????文件????????2098??2013-02-20?12:10??Chapter?11\program11_08.c
?????文件????????8372??2013-02-20?12:10??Chapter?11\program11_09.c
?????文件????????1618??2013-02-20?12:10??Chapter?10\program10_01.c
?????文件?????????490??2013-02-20?12:10??Chapter?10\program10_02.c
?????文件?????????569??2013-02-20?12:10??Chapter?10\program10_03.c
?????文件?????????476??2013-02-20?12:10??Chapter?10\program10_04.c
?????文件?????????783??2013-02-20?12:10??Chapter?10\program10_05.c
?????文件?????????500??2013-02-20?12:10??Chapter?10\program10_06.c
?????文件????????2613??2013-02-20?12:10??Chapter?10\program10_07.c
?????文件?????????582??2013-02-20?12:10??Chapter?10\program10_08.c
?????文件?????????466??2013-02-20?12:10??Chapter?10\program10_09.c
?????文件?????????411??2013-02-20?12:10??Chapter?10\program10_10.c
?????文件?????????600??2013-02-20?12:10??Chapter?10\program10_11.c
?????文件?????????367??2013-02-20?12:10??Chapter?10\program10_12.c
?????文件????????1723??2012-11-28?07:27??Chapter?12\program12_01.c
?????文件????????2543??2012-11-28?07:27??Chapter?12\program12_02.c
?????文件????????2147??2012-11-28?07:27??Chapter?12\program12_03.c
?????文件????????8080??2012-11-28?07:27??Chapter?12\program12_04.c
?????文件????????5585??2012-11-28?07:27??Chapter?12\program12_05.c
............此處省略109個文件信息
評論
共有 條評論