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
int main() { char destination[50]; snprintf(destination, 50, "Hello %s!", "World"); printf("%s", destination); return 0; }
Hello World!