請輸入查詢關鍵詞:
判斷字符串a和b是否相等,應當使用?
選項A:if (a= =b)
選項B:if (a=b)
選項C:if (strcpy (a,b) )
選項D:if (strcmp (a,b) )
正確答案:選項D