Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
// 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"); }
Some text in myFunction
Hey! Some text in myOtherFunction