void __cdecl PrintHello(char* name) { char buf[10]; strcpy(buf, "hello "); strcat(buf, name); puts(buf); }