#include<stdio.h>
#include<conio.h>
main()
{
int a,b,c;
printf("emter the a and b");
scanf("%d %d ",&a,&b);
c=a+b;
printf("c is %d",c);
getch();
return 0;
}
#include<conio.h>
main()
{
int a,b,c;
printf("emter the a and b");
scanf("%d %d ",&a,&b);
c=a+b;
printf("c is %d",c);
getch();
return 0;
}
No comments:
Post a Comment