c program to addition of two numbers

Solutions on MaxInterview for c program to addition of two numbers by the best coders in the world

showing results for - "c program to addition of two numbers"
Shanna
12 Sep 2020
1#include <stdio.h>int main(){ int a, b, sum;printf("Enter two integers");scanf("%d %d", &a, &b);sum = a + b; printf("%d + %d = %d", a, b, sum);return 0;}