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 is #include stdio h?
What are the different types of pointers used in c language?
What is sizeof int in c?
Do pointers need to be initialized?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Write a program for finding factorial of a number.
How to draw the flowchart for structure programs?
which is an algorithm for sorting in a growing Lexicographic order
largest Of three Number using without if condition?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is pointer & why it is used?
What is difference between arrays and pointers?
How do you generate random numbers in C?
What is function prototype in c with example?
What is meant by initialization and how we initialize a variable?