#include <stdio.h> #include <conio.h> void main () { int first, second; printf("Enter two integers to add:") scanf("%d%d", &first, &second); int sum=first+second; printf("Sum of entered number=%d", sum); getch(); }
#include <stdio.h> #include <conio.h> void main () { int first, second; printf("Enter two integers to add:") scanf("%d%d", &first, &second); int sum=first+second; printf("Sum of entered number=%d", sum); getch(); }