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
In which layer of the network datastructure format change is done
a value that does not change during program execution a) variabe b) argument c) parameter d) none
why return type of main is not necessary in linux
What is dynamic memory allocation?
What is the advantage of using #define to declare a constant?
What is the meaning of c in c language?
How can I automatically locate a programs configuration files in the same directory as the executable?
What does nil mean in c?
Can you please compare array with pointer?
Why n++ execute faster than n+1 ?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
Explain what is the use of a semicolon (;) at the end of every program statement?
Is fortran faster than c?
What are the different file extensions involved when programming in C?
What is the purpose of sprintf() function?