原创 C語言完美體系

**第 1 篇 C 語言第一階段 13 1.1C 語言第一階段--語言課程概述 13 1.1.1 什麼是語言,什麼是 C 語言 13 1.1.2 基本常識 14 1.1.3 人與計算機之間的更好的交互

原创 20160221.CCPP體系詳解(0031天)

程序片段(01):01.結構體靜態數組.c+02.結構體動態數組.c 內容概要:結構體數組 ///01.結構體靜態數組.c #include <stdio.h> #include <stdlib.h> #include <str

原创 20160212.CCPP體系詳解(0022天)

程序片段(01):01.二維數組.c 內容概要:二維數組 #include <stdio.h> #include <stdlib.h> //01.關於棧內存開闢數組: // 訣竅:將所有維度的數組看做爲一維數組, //

原创 20160218.CCPP體系詳解(0028天)

程序片段(01):加法.c 內容概要:字符串計算表達式 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> //01.去除空格: //

原创 20160216.CCPP體系詳解(0026天)

程序片段(01):01.MemCpy.c 內容概要:內存拷貝 #include <stdio.h> #include <stdlib.h> #include <memory.h> //memcpy: // 將內存數據按照字節

原创 20160222.CCPP體系詳解(0032天)

程序片段(01):寬字符.c+字符串與內存四區.c 內容概要:寬窄字符 ///寬字符.c #include <stdio.h> #include <stdlib.h> #include <locale.h> //01.寬字符的

原创 20160208.CCPP體系詳解(0018天)

程序片段(01):main.c 內容概要:PointWithOutInit #include <stdio.h> #include <stdlib.h> //01.野指針詳解: // 1.野指針:沒有進行初始化操作的指針--

原创 20160225.CCPP體系詳解(0035天)

程序片段(01):CircleList.h+CircleList.c+main.c 內容概要:環形鏈表 ///CircleList.h #pragma once #include <stdio.h> typedef struc

原创 20160211.CCPP體系詳解(0021天)

程序片段(01):01.指針數組.c+02.動態數組.c 內容概要:指針數組 ///01.指針數組.c #include <stdio.h> #include <stdlib.h> //01.指針數組作爲函數的形參: //

原创 20160220.CCPP體系詳解(0030天)

程序片段(01):對稱.c 內容概要:對稱 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <string.h>

原创 20160209.CCPP體系詳解(0019天)

程序片段(01):01.字符串.c 內容概要:字符串 #include <stdio.h> #include <stdlib.h> #include <locale.h> #include <string.h> //00.語音

原创 20160219.CCPP體系詳解(0029天)

程序片段(01):ReplaceAll.c 內容概要:ReplaceAll #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #incl

原创 20160214.CCPP體系詳解(0024天)

程序片段(01):CGI.c 內容概要:CGI-cloud #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main01(void) { printf("C

原创 20160215.CCPP體系詳解(0025天)

程序片段(01):01.Malloc.c 內容概要:Malloc拓展 #include <stdio.h> #include <stdlib.h> //01.內存伸縮函數: // void * realloc(void *

原创 20160224.CCPP體系詳解(0034天)

程序片段(01):指針與結構體.c 內容概要:指針與結構體 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <str