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
How can I find out how much free space is available on disk?
What does *p++ do? What does it point to?
Does c have an equivalent to pascals with statement?
Is c is a low level language?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is pragma c?
What does typedef struct mean?
application attempts to perform an operation?
What is the difference between test design and test case design?
Explain how can I convert a string to a number?
Whats s or c mean?
Add Two Numbers Without Using the Addition Operator
What are the features of c language?
What is a stream?
How can you increase the size of a dynamically allocated array?