I have problem about doing something in my program. I have a char[28] array keeping names of people. I have another char[28] array that also keeps names. I ask user to enter
You can write code for your own char array compare function. Let's start
//Return 0 if not same other wise 1 int compare(char a[],char b[]){ for(int i=0;a[i]!='\0';i++){ if(a[i]!=b[i]) return 0; } return 1; }