fork download
#include <stdio.h>
#include <string.h>
int main(void) {
	char text[64] = "Hello";
	printf(text);
	strcpy(text, " World!");
	printf(text);
	return 0;
}
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
Hello World!