编写内联函数求解 2x*x +4x+5 的值,x 为整数(假设x为5),并用主函数调用该函数 。
时间: 2023-04-01 22:00:41 浏览: 40
对两个整数通过函数调用交换其值,然后输出
5星 · 资源好评率100%
可以使用以下代码编写内联函数:
#include <stdio.h>
inline int calculate(int x) {
return 2*x*x + 4*x + 5;
}
int main() {
int x = 5;
int result = calculate(x);
printf("The result is %d\n", result);
return ;
}
输出结果为:The result is 70
阅读全文