what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / srsabariselvan
infinite loop.
and print the character associated with the 1000,1001,1002,....
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How macro execution is faster than function ?
What is data structure in c programming?
Is it possible to have a function as a parameter in another function?
What is a node in c?
Tell us the use of fflush() function in c language?
What is getch?
Explain what does the function toupper() do?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
How variables are declared in c?
How can I discover how many arguments a function was actually called with?
What is the difference between malloc() and calloc()?
What are operators in c?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Which node is more powerful and can handle local information processing or graphics processing?
Explain what are bus errors, memory faults, and core dumps?