what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / 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 |
Post New Answer View All Answers
What is the purpose of macro in C language?
What is array of structure in c programming?
Write a function that will take in a phone number and output all possible alphabetical combinations
Can a local variable be volatile in c?
why we wont use '&' sing in aceesing the string using scanf
What is the newline escape sequence?
What is an identifier?
In C language what is a 'dangling pointer'?
Do you have any idea about the use of "auto" keyword?
What is the purpose of void in c?
Why isn't it being handled properly?
write a c program in such a way that if we enter the today date the output should be next day's date.
What are register variables? What are the advantage of using register variables?
Which is the memory area not included in C program? give the reason
Is Exception handling possible in c language?