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 indirection?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
What is realloc in c?
Why do we use main function?
What is external variable in c?
When should a type cast not be used?
p*=(++q)++*--p when p=q=1 while(q<=6)
What does. int *x[](); means ?
What is a lookup table in c?
develop algorithms to add polynomials (i) in one variable
What is the difference between array and structure in c?
What is the best organizational structure?
Explain what is wrong with this program statement?
What is extern c used for?