Computer Science & C Programming

back

String

  1. A "string" is a synonym for an array of characters and the library string.h proposes all the functions to manipulate text:
char txt[256];
strcpy(txt,"Hello everybody !");
printf("%s",txt);
  1. To get more information on this library (on Linux), one can do man string on a terminal