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