what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / 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 |
Post New Answer View All Answers
In C language, a variable name cannot contain?
What is oops c?
Explain what is the difference between a string and an array?
What is the argument of a function in c?
Write a program to generate the Fibinocci Series
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Is that possible to add pointers to each other?
Explain is it better to bitshift a value than to multiply by 2?
What is a pointer in c?
What does %p mean c?
What do you mean by command line argument?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
How can I generate floating-point random numbers?
Explain 'bus error'?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.