what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / 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 |
Post New Answer View All Answers
Why is a semicolon (;) put at the end of every program statement?
What is the difference between local variable and global variable in c?
Where local variables are stored in c?
What is register variable in c language?
What does int main () mean?
what is a constant pointer in C
Explain two-dimensional array.
write a c program in such a way that if we enter the today date the output should be next day's date.
Is void a keyword in c?
How many levels deep can include files be nested?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is return in c programming?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
How will you find a duplicate number in a array without negating the nos ?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?