what is op?
for(c=0;c=1000;c++)
printf("%c",c);

Answers were Sorted based on User's Feedback



what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / srsabariselvan

infinite loop.
and print the character associated with the 1000,1001,1002,....

Is This Answer Correct ?    0 Yes 0 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / vinoth

It will work fine no value or error will be displayed.

Is This Answer Correct ?    0 Yes 0 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / ashok

infinite loop

Is This Answer Correct ?    0 Yes 0 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / a programmer

This will print the ascii characters from 0 to 1000 if the
datat type of the variable c is other than character. If the
datatype of the variable is char then it will be into
infinite loop.

Is This Answer Correct ?    4 Yes 5 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / jay sean

The output of the given program is the character or ascii
value of 0,1,2,..........so on up to the stack of memory
get full.The reason behind it is the condition for
termination is not given in the for loop,because c=1000 is
assingment operator not a conditional.

Is This Answer Correct ?    0 Yes 1 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / manju

In each iteration the equivalent ascii values of 0 to 1000
will print.

Is This Answer Correct ?    5 Yes 8 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / sarath

in each iteration it will print the characters for ascii
values 0,1,2,3,...

Is This Answer Correct ?    6 Yes 11 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / shruti

It will give a compilation error..

the for loop syntax is
for(initialize; condition ; inc / dec)

condition -> assignment operator is wrong..

there should be 2 equals ("==")..

Is This Answer Correct ?    1 Yes 6 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / rohit

it will come out of the for loop & hence no output.
because,when c=0,then for next condition it will check
whether 0==1000,the condition fails here itself only.
so,it doesn't go for executing any statement.

Is This Answer Correct ?    1 Yes 6 No

what is op? for(c=0;c=1000;c++) printf("%c",c);..

Answer / p

answer 6 is absolutely correct

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More C Interview Questions

what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")

7 Answers   Cadence, JNTU, Zen Technologies,


what is the function of pragma directive in c?

0 Answers  


Multiply an Integer Number by 2 Without Using Multiplication Operator

0 Answers  


what is the difference between embedded c and turbo c ?

1 Answers  


DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?

2 Answers   Wipro,






which of 'arrays' or 'pointers' are faster?

5 Answers  


convert 12345 to 54321 withoutusing strig

5 Answers  


Why & is used in c?

0 Answers  


Read two numbers from keyboard and find maximum of them?

1 Answers  


What is the mean of function?

0 Answers  


Can i use “int” data type to store the value 32768? Why?

0 Answers  


which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +

0 Answers  


Categories