LEARNER C PROGRAMMER
I am trying to use either a ‘while’ or a ‘do-while’ loop using a string, but it doesnt want to work, could someone please help me.
THESE ARE THE BITS OF CODE THAT IS AFFECTED.
char Description[100];
while (Description != “zzz”)
{
printf(“Enter Description: “);
scanf(” %s”, Description);
….
}