what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / sreekanth
Warnings:
Test expression for for is assignment expression: c = 1000
The condition test is an assignment expression. Probably,
you mean to use == instead of =. If an assignment is
intended, add an extra parentheses nesting(e.g., if ((a =
b)) ...) to suppress this message. (Use -predassign to
inhibit warning)
Test expression for for not boolean, type int: c = 1000.
Test expression type is not boolean or int. (Use
-predboolint to inhibit warning)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain how can you restore a redirected standard stream?
What are the advantages of using new operator as compared to the function malloc ()?
What is the function of this pointer?
What are Macros? What are its advantages and disadvantages?
What is the value of uninitialized variable in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is the use of header?
I have a varargs function which accepts a float parameter?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
Write a program to swap two numbers without using third variable in c?
Why do we use int main?
What is the purpose of void in c?
Where are local variables stored in c?
What is the best way to store flag values in a program?