#include<stdio.h>
void main()
{
int a[3];
clrscr();
printf("Enter the Three Number =");
scanf("%d",&a[0]);
scanf("%d",&a[1]);
scanf("%d",&a[2]);
printf("A = %d, B = %d, C = %d",a[0],a[1],a[2]);
getch();
}
By Dinesh Thakur
#include<stdio.h>
void main()
{
int a[3];
clrscr();
printf("Enter the Three Number =");
scanf("%d",&a[0]);
scanf("%d",&a[1]);
scanf("%d",&a[2]);
printf("A = %d, B = %d, C = %d",a[0],a[1],a[2]);
getch();
}
Dinesh Thakur is a Freelance Writer who helps different clients from all over the globe. Dinesh has written over 500+ blogs, 30+ eBooks, and 10000+ Posts for all types of clients.
For any type of query or something that you think is missing, please feel free to Contact us.