在C语言中编写自己的头文件的步骤 −
int sub(int m,int n) { return(m-n); }
#include<stdio.h> #include "sub.h" void main() { int a= 7, b= 6, res; res = sub(a, b); printf("Subtraction of two numbers is: %d", res); }
运行 ”subtraction.c” 后,输出将为 −
Subtraction of two numbers is: 1
以上是如何在C语言中编写自己的头文件?的详细内容。更多信息请关注PHP中文网其他相关文章!