what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / ksprasad
It will go for infinite loop.
But in each iteration, c is assigned with the value 1000.
So each time it will print a character of ascii=1000.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is operator promotion?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
What is the purpose of void in c?
How can I do serial ("comm") port I/O?
What are the three constants used in c?
What does. int *x[](); means ?
can we have joblib in a proc ?
What are operators in c?
Why ca not I do something like this?
What are type modifiers in c?
How does #define work?
how we can make 3d venturing graphics on outer interface
Explain the difference between getch() and getche() in c?
Write a program to generate the Fibinocci Series
What is volatile variable in c?