開發平台(Platform): (Ex: Win10, Linux, ...)
win10
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
minGW
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
strlen
問題(Question):
char *s1= "(a*b)";
int a=strlen(s1);
看結果a是等於5沒錯,但
for(int i=0;i<strlen(s1);i++)
卻只執行三次..
為什麼呢 真奇怪啊
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版)
補充說明(Supplement):