write a C program to input two numbers and display them.
Answers
Answered by
0
#include<stdio.h> //used for printf and scanf
#include<conio.h> //used to include definition of getch() and conio()
void main()
{
clrscr(); //used for clear the output screen
int a,b;
printf("Enter any two number");
scanf("%d%d",&a,&b);
printf("\na=%d",a);
printf("\nb=%d",b);
getch(); //used for holding output screen
}
Similar questions
India Languages,
6 months ago
Math,
1 year ago
Physics,
1 year ago
Physics,
1 year ago
Geography,
1 year ago