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 the role of this pointer?
Is there anything like an ifdef for typedefs?
What is the use of printf() and scanf() functions?
Is c language still used?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
How is null defined in c?
What is meant by int main ()?
What is include directive in c?
What are enumerated types?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
How can I delete a file?
What is NULL pointer?
Why void is used in c?
What is the concatenation operator?
develop algorithms to add polynomials (i) in one variable