在一个文件中使用两个函数的程序

#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

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论