Next:
Makefile
Up:
Mémento C - shell,
Previous:
Caractères
Chaînes
Chaînes
char s[32];
scanf("%s",s);
printf("%s\n",s);
sprintf(s,"%d",i);
c=s[i];
s[i]='a';
#include <string.h>
l=strlen(s);
strcpy(dest,source);
strcmp(s1,s2);
R.Keriven (Cermics)