** ADD TWO NO's**
=================
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\n ENTER THE tWO nUMBERS:");
scanf("%d%d", &a,&b);
c-a<b;
printf("\n a,b = %d", c);
getch();
}
=================
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("\n ENTER THE tWO nUMBERS:");
scanf("%d%d", &a,&b);
c-a<b;
printf("\n a,b = %d", c);
getch();
}
enter the two number : 10 20 c=30 |
0 comments:
Post a Comment