what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / jay sean
The output of the given program is the character or ascii
value of 0,1,2,..........so on up to the stack of memory
get full.The reason behind it is the condition for
termination is not given in the for loop,because c=1000 is
assingment operator not a conditional.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What are the different types of C instructions?
How can I remove the leading spaces from a string?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What are variables c?
Can we declare function inside main?
What is self-referential structure in c programming?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Explain what is wrong in this statement?
hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
What is the hardest programming language?
provide an example of the Group by clause, when would you use this clause
What does sizeof return c?
Write a code of a general series where the next element is the sum of last k terms.
Is Exception handling possible in c language?
What is difference between scanf and gets?