#include<stdio.h>
main()
{
int num1,num2,sum;
printf("Enter the two integers to be added");
scanf("%d %d", &num1, &num2);
sum = num1+num2;
printf("Addition of %d and %d = %d", num1, num2, sum);
}
The errors I get are:
Unable to open include file 'stdio.h'
Function printf should have a prototype.
Function scanf should have a prototype.