/*WAP in C to perfrom addition of two integers*/ #include int main () { int a, b, s; printf ("\nEnter the first integer: "); scanf ("%d", &a); printf ("\nEnter the second integer: "); scanf ("%d", &b); s = a + b; printf ("\nThe result of %d + %d = %d",a,b,s); return 0; }