运行 ❯
获取您
自己的
网站
×
更改方向
更改主题,浅色/深色
转至 Spaces
#include <stdio.h> // Declare two functions, myFunction and myOtherFunction void myFunction(); void myOtherFunction(); int main() { myFunction(); // call myFunction (from main) return 0; } // Define myFunction void myFunction() { printf("Some text in myFunction\n"); myOtherFunction(); // call myOtherFunction (from myFunction) } // Define myOtherFunction void myOtherFunction() { printf("Hey! Some text in myOtherFunction\n"); }
myFunction 中的部分文本
嘿!myOtherFunction 中的部分文本