char name[] = "Peter"; char aux[10]; aux[0] = ' '; strcat(aux, "<"); strcat(aux, name); strcat(aux, ">"); //OUTPUT: <Peter>