0
I had read a line. It is:
while(1==scanf("%s",&country)) { } What does it mean?
2 ответов
+ 1
scanf return amount of value read in from the buffer, in your case it will be 1 if it's more than 1, it will go outa the loop, why not try it in a code and see for yourself that will yield a better understanding for you
0
I tried. But did not understand how a string can be equal to 1. 😔