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
Is it valid to address one element beyond the end of an array?
Why c is called free form language?
What are the advantages and disadvantages of c language?
Why do we use c for the speed of light?
What are the two types of functions in c?
How can I read data from data files with particular formats?
What is the difference between struct and typedef struct in c?
What is strcpy() function?
Why is python slower than c?
How do I round numbers?
Explain what is meant by 'bit masking'?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is a rvalue?
Is fortran faster than c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.