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