【C語言】程序斷言和const的用法

斷言 如果使用了代碼原本不應該使用的導致程序出現了bug,程序崩潰。我們應該儘量杜絕這種現象的發生, 而斷言就很好的解決了這一情況。 #include <stdio.h> #include <assert.h>//斷言需要的頭文件 #include <string.h> void Mystrcpy(char *des,char* src) {      assert(des!=NULL && sr
相關文章
相關標籤/搜索