C program to print all numbers between a and b (a and b inclusive) using a for loop.
Input Format:
Input consists of 2 integers. The first integer corresponds to a and the second integer corresponds to b.
Assume a>=b.
Output Format:
Refer Sample Input and Output for formatting specifications.
[All text in bold corresponds to input and the rest corresponds to output]
Sample Input and Output:
Enter the value of a
10
Enter the value of b
4
10
9
8
7
6
5
4
Code:
#include<stdio.h>
int main()
{
int a,b,i;
printf("Enter the value of a\n");
scanf("%d",&a);
printf("Enter the value of b\n");
scanf("%d",&b);
if(a>=b)
{
for (i=a;i>=b;i--)
{
printf("%d\n",i);
}
}
return 0;
}
Input Format:
Input consists of 2 integers. The first integer corresponds to a and the second integer corresponds to b.
Assume a>=b.
Output Format:
Refer Sample Input and Output for formatting specifications.
[All text in bold corresponds to input and the rest corresponds to output]
Sample Input and Output:
Enter the value of a
10
Enter the value of b
4
10
9
8
7
6
5
4
#include<stdio.h>
int main()
{
int a,b,i;
printf("Enter the value of a\n");
scanf("%d",&a);
printf("Enter the value of b\n");
scanf("%d",&b);
if(a>=b)
{
for (i=a;i>=b;i--)
{
printf("%d\n",i);
}
}
return 0;
}
No comments