Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { char message[] = "Good to see you,"; char fname[] = "John"; printf("%s %s!", message, fname); return 0; }
Good to see you, John!