Answers for "putting character in the begginig and end of sring C"

C
0

putting character in the begginig and end of sring C

char name[] = "Peter";
char aux[10];
aux[0] = '\0';
strcat(aux, "<");
strcat(aux, name);
strcat(aux, ">");
//OUTPUT: <Peter>
Posted by: Guest on March-20-2021

Code answers related to "putting character in the begginig and end of sring C"

Code answers related to "C"

Browse Popular Code Answers by Language