C语言中include是什么?

#include "stdio.h" #include "math.h" main() { double x,s; printf("input number:\n"); scanf("%lf",&x); s=sin(x); printf("sine of %lf is %lf\n",x,s); }   仿真后,输入数字n,获得其sin值。函数   预处理命令还有其它几种,这里的include 称
相关文章
相关标签/搜索