/* Includes ------------------------------------------------------------------*/ #include "stdio.h" #include "stdlib.h" //全局变量声明区
//函数声明区 /* Private functions ---------------------------------------------------------*/ /******************************************************************************* * Function Name : main * Description : Main program. * Input : None * Output : None * Return : None *******************************************************************************/ int main(void) {
//局部变量声明 printf("helloworld!");
//函数调用
return 0;
} //函数定义区 /******************************************************************************* * Function Name : * Description : * * Input : None * Output : None * Return : None *******************************************************************************/
原文:https://www.cnblogs.com/zyfstc544/p/15042411.html