what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / dally
it will goto infinite loop because each time i=0 and i=100
so it will goto infinite loop.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Do you have any idea how to compare array with pointer in c?
Explain how can you restore a redirected standard stream?
Tell me when would you use a pointer to a function?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Explain how do you override a defined macro?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Which header file is used for clrscr?
What is the difference between Printf(..) and sprint(...) ?
What are the 4 types of programming language?
What is a constant and types of constants in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What does c mean before a date?
Explain why can’t constant values be used to define an array’s initial size?
What is a shell structure examples?
What are the 5 types of inheritance in c ++?