what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / shruti
It will give a compilation error..
the for loop syntax is
for(initialize; condition ; inc / dec)
condition -> assignment operator is wrong..
there should be 2 equals ("==")..
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What is meant by preprocessor in c?
Does c have enums?
Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?
Write the syntax and purpose of a switch statement in C.
What is the difference between fread buffer() and fwrite buffer()?
How can you check to see whether a symbol is defined?
What is data type long in c?
What are the different properties of variable number of arguments?
What is scanf () in c?
What are the advantages of external class?
Give the rules for variable declaration?
Is c a great language, or what?
What is the best way to store flag values in a program?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Can a pointer point to null?