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
How can I find out the size of a file, prior to reading it in?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Is return a keyword in c?
Is null valid for pointers to functions?
5 Write an Algorithm to find the maximum and minimum items in a set of ānā element.
What is a newline escape sequence?
What is sizeof array?
Can you return null in c?
What is d scanf?
What is the use of pointers in C?
Why we use int main and void main?
Can we use any name in place of argv and argc as command line arguments?
What is the best organizational structure?
Explain the difference between ++u and u++?
By using C language input a date into it and if it is right?