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
#include
int main() { char str1[20] = "Hello "; char str2[] = "World!"; // Concatenate str2 to str1 (the result is stored in str1) strcat(str1, str2); // Print str1 printf("%s", str1); return 0; }
Hello World!