Write a program to produce the following output:
1
2
3
4
5
6
7
8
9
10
Answer Posted / munna
#include<stdio.h>
#include<conio.h>
void main()
{
int i=0;
for(i=0;i<=10;i++)
{
printf("the required numbers are:%d",i);
}
getch();
}
| Is This Answer Correct ? | 3 Yes | 9 No |
Post New Answer View All Answers
What are the functions to open and close file in c language?
What is the difference between memcpy and memmove?
What is a const pointer?
What is a char c?
What is string in c language?
What is function prototype?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is meant by inheritance?
What is a good way to implement complex numbers in c?
How to get string length of given string in c?
Is a pointer a kind of array?
in iso what are the common technological language?
Why do we use & in c?
Is malloc memset faster than calloc?
What happens if a header file is included twice?