Write a program to produce the following output:
1
2
3
4
5
6
7
8
9
10
Answer Posted / guest
#include<stdioh>
#include<conio.h>
void main()
{
int i;
for(i=0;i<=10;i++)
{
printf("%d",i);
}
}
| Is This Answer Correct ? | 8 Yes | 14 No |
Post New Answer View All Answers
What is scope of variable in c?
What are the features of the c language?
Explain what math functions are available for integers? For floating point?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
What is the use of bitwise operator?
What is character constants?
Can a pointer be volatile in c?
What is the explanation for the dangling pointer in c?
What is the difference between call by value and call by reference in c?
Tell me is null always defined as 0(zero)?
develop algorithms to add polynomials (i) in one variable
When can you use a pointer with a function?
Can we assign integer value to char in c?
Do you know the difference between exit() and _exit() function in c?
How do you use a 'Local Block'?