C: Lire et Ecrire une chaîne de caractère

Author:


Download


#include 

int main(void)
{
  char str[128];

  printf("Tapez une pharse: n");
  scanf("%s", str);
  printf("Voici votre phrase: %sn", str);

  return 0;
}

Leave a Reply

Your email address will not be published. Required fields are marked *