Answer to Question #29656 in C++ for matt
How do i write a while loop terminating when ZZZ is entered??
1
2013-05-08T09:12:29-0400
#include <string>
//mian funtction
int main()
{
char inputstr[100];
printf("Enter the string: ");
gets(inputstr);
while( strcmp(inputstr,"ZZZ") == 1 ){//while inputstr!=ZZZ continue
printf("Enter the string: ");
gets(inputstr);//get string
}
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment