00001 #include <stdio.h> 00002 00003 int main() 00004 { 00005 char t1[4] = "toto"; // sans '\0' 00006 char t2[] = "toto"; // avec '\0' 00007 00008 printf("t1 (de taille %lu) = %s\n",sizeof(t1)/sizeof(char),t1); 00009 printf("t2 (de taille %lu) = %s\n",sizeof(t2)/sizeof(char),t2); 00010 return 0; 00011 }