int Data Types and scanf Statement in C
Program 1 #include<stdio.h> #include<conio.h> int main() { int a=10,b=5,c; printf(“Enter two number”); scanf(“%d%d”,&a,&b); //scanf(“%d”,&a); // scanf(“%d”,&b); c=a+b; printf(“\nAddition of %d and %d is %d”,a,b,c); c=a-b; printf(“\nSub of %d and %d is %d”,a,b,c); c=a*b; printf(“\nMultiplication...

