USE_FUNC.txt

#include <stdio.h>
 
void hello_world(void)
{
   printf("Hello, world!\n");
}
 
void main(void)
{
   hello_world();
}




原文地址:https://www.cnblogs.com/xe2011/p/2534467.html