Home > Back-end >  C how to output two strings together, to solve
C how to output two strings together, to solve

Time:11-15

CodePudding user response:

Change
Z=STR;
Strcpy (z, a);
Strcat (z, b);
Printf (" z=% s ", z);
  • Related