#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);
}
我得到的错误是:最佳答案
确保已正确安装了c编译器。如果您使用的是Linux OS,则它已预先安装。
关于c - 编译此C程序时出现这些错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30634432/