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
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What does it mean when a pointer is used in an if statement?
Who developed c language and when?
Explain how can I manipulate strings of multibyte characters?
How does normalization of huge pointer works?
What language is windows 1.0 written?
Write a program to swap two numbers without using third variable?
What is use of integral promotions in c?
What is union in c?
Why ca not I do something like this?
The statement, int(*x[]) () what does in indicate?
What is a nested loop?
What are the types of data structures in c?
How to set file pointer to beginning c?
Explain do array subscripts always start with zero?