#include <stdio.h>
void my_function(void); /* C function prototyping */
int main(void){
printf("main./n");
my_function();/*from www . yii ba i . c o m*/
printf("here./n");
return 0;
}
void my_function(void) /* start of function definition */
{
printf("hi?/n");
}
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266402.html