#include #include int main() { char s[20]; char *t; s[0] = 'H'; t = s + 1; *t++ = 'e'; strcpy(t, "llo, world"); printf("%s\n", s); return 0; }