Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { char destination[50]; sprintf(destination, "Hello %s!", "World"); printf("%s", destination); return 0; }
Hello World!