1char name[] = "Peter"; 2char aux[10]; 3aux[0] = '\0'; 4strcat(aux, "<"); 5strcat(aux, name); 6strcat(aux, ">"); 7//OUTPUT: <Peter>