char * str;
str =malloc(100);
in do while loop why m i not able to enter any string into gets (provided when the loop runs for more than one time)???
do{ gets(str);}whlie(any condition);
and when i tried my program using” two gets(str)” then my program was running properly…
why ?