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


Please Help Members By Posting Answers For Below Questions

What is the advantage of an array over individual variables?

954


How do I use void main?

816


What is extern c used for?

739


What are dangling pointers in c?

816


What is data types?

792


How main function is called in c?

805


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.

1499


swap 2 numbers without using third variable?

848


What is the use of putchar function?

815


What is return in c programming?

696


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.

3541


Do you know the difference between malloc() and calloc() function?

795


How do you do dynamic memory allocation in C applications?

818


What are examples of structures?

777


Explain about the constants which help in debugging?

1063