what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / manju
In each iteration the equivalent ascii values of 0 to 1000
will print.
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
Explain what will the preprocessor do for a program?
What is meant by initialization and how we initialize a variable?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Why does the call char scanf work?
What is the size of enum in c?
Tell me when is a void pointer used?
Explain about block scope in c?
What are the 3 types of structures?
What are header files and what are its uses in C programming?
What is memory leak in c?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
Which is more efficient, a switch statement or an if else chain?
what are enumerations in C
What is the value of uninitialized variable in c?