函数调用函数

#include <stdio.h>

void two()

{

    printf("two");

}

void one_three()

{

    printf("one\n");

    two();

    printf("\nthree\n");

}

int main(void) 

printf("Start:\n");

one_three;

printf("done!\n");

return 0;

}

显示不了one,two,three


慕用4063026
浏览 1336回答 1
1回答

慕用4063026

one_three()
打开App,查看更多内容
随时随地看视频慕课网APP