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
Explain what are the advantages and disadvantages of a heap?
what are bit fields? What is the use of bit fields in a structure declaration?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the difference between procedural and declarative language?
What is #line in c?
What do you mean by Recursion Function?
What is 2 d array in c?
What is difference between structure and union with example?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
What is meant by inheritance?
i want to know the procedure of qualcomm for getting a job through offcampus
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Explain the Difference between the New and Malloc keyword.
How can I write functions that take a variable number of arguments?
What is pointer to pointer in c with example?