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


Please Help Members By Posting Answers For Below Questions

How can you pass an array to a function by value?

597


What is formal argument?

640


Are there namespaces in c?

558


Write a progarm to find the length of string using switch case?

1599


Which is an example of a structural homology?

769






Why c is called top down?

619


write a c program to find the sum of five entered numbers using an array named number

1615


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1880


What are the types of variables in c?

572


Explain what is the advantage of a random access file?

650


Explain how do I determine whether a character is numeric, alphabetic, and so on?

644


What is function and its example?

619


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

637


What’s the special use of UNIONS?

651


What is the use of ?: Operator?

660