0
您好我想創建一個簡單的代碼中使用,如果邏輯運算符==在if語句,但它不工作的人可以看看我的代碼在告訴我什麼是錯用它邏輯運算符在if語句不工作
這裏是我code`
#include<stdio.h>
main();
{
char a[15], b[15];
clrscr();
printf("Enter A String\n");
fgets(a,15,stdin);
printf("Enter Another String\n");
fgets(b,15,stdin);
if(a==b)
printf("Match\n");
else
printf("Does Not Match");
getch();
}
我使用的這個,但即使我進入2個等值它打印「不匹配」 誰能告訴我什麼是錯,我是初學者在編程和IM真的很困惑什麼是錯這裏
非常感謝你的幫助 –