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 / ashok

I think it will print ascii values of 0,1,2 and so on upto 1000

Is This Answer Correct ?    4 Yes 13 No

Post New Answer

More C Interview Questions

What is meant by int main ()?

0 Answers  


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


how to use virual function in real time example

1 Answers   CTS, Wipro,


What is restrict keyword in c?

0 Answers  


simple program of graphics and their output display

0 Answers   Elysium,






What are the different pointer models in c?

4 Answers  


Write code for initializing one dimentional and two dimentional array in a C Program?

5 Answers   Deshaw, Edutech, GMD,


64/square(4)

1 Answers  


What is the difference between void main() and void main (void) give example programme?

0 Answers  


What is a memory leak in structures? How can we rectify that?

2 Answers  


write a “Hello World” program in “c” without using a semicolon?

9 Answers   CTS, TCS, Wipro,


When should a type cast be used?

0 Answers  


Categories