what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / ksprasad
It will go for infinite loop.
But in each iteration, c is assigned with the value 1000.
So each time it will print a character of ascii=1000.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are two dimensional arrays alternatively called as?
What is structure packing in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Is it possible to have a function as a parameter in another function?
What is 'bus error'?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Explain the process of converting a Tree into a Binary Tree.
What is a buffer in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What does %c mean in c?
What are the advantages of union?
What is the use of pointers in C?
What are types of structure?
show how link list can be used to repersent the following polynomial i) 5x+2