a simple c program using 'for' loop to display the output
5
4
3
2
1
Answer Posted / rohit dilip kakade
#include<stdio.h>
#include<conio.h>
void main(void)
{
int i;
clrscr();
for(i=5;i>0;i--)
{
printf("
%d",i);
}
getch();
}
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the advantage of an array over individual variables?
How do I use void main?
What is extern c used for?
What are dangling pointers in c?
What is data types?
How main function is called in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
swap 2 numbers without using third variable?
What is the use of putchar function?
What is return in c programming?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
Do you know the difference between malloc() and calloc() function?
How do you do dynamic memory allocation in C applications?
What are examples of structures?
Explain about the constants which help in debugging?