Loading lang_c_qu_05...
<ctype.h>permet de savoir si un caractère est une lettre ?
<ctype.h>permet de savoir si un caractère est un chiffre ?
<ctype.h>permet de transformer un caractère représentant une lettre minuscule en la majuscule correspondante ?
<ctype.h>permet de transformer un caractère représentant une lettre majuscule en la minuscule correspondante ?
char str1[100]="ENIB"; char *str2=str1;
char str1[100]="ENIB"; char str2[100]=str1;
char *str1="snib"; *str1='E';
const char *str1="snib"; *str1='E';
char str1[]="snib"; *str1='E';
char str[]="ENIB"; int sz=(int)sizeof(str); int len=(int)strlen(str);
char str[100]="ENIB"; int sz=(int)sizeof(str); int len=(int)strlen(str);
char str1[]="Welcome to ENIB"; char *str2=str1; if(sizeof(str1)==sizeof(str2)) { printf("Here we are\n"); }
char str1[]="Welcome to ENIB"; char *str2=str1; if(strlen(str1)==strlen(str2)) { printf("Here we are\n"); }
char str1[]="same contents"; char str2[]="same contents"; if(str1==str2) { printf("Here we are\n"); }
char str1[]="same contents"; const char *str2="same contents"; if(str1==str2) { printf("Here we are\n"); }
char str1[]="same contents"; char *str2=str1; if(str1==str2) { printf("Here we are\n"); }
<string.h>pour rechercher la lettre a dans la chaîne de caractères str puis, le cas échéant, la remplacer par la lettre b.
<string.h>pour rechercher la sous-chaîne cut dans la chaîne de caractères str puis, le cas échéant, terminer la chaîne à cet endroit.
const char *str1="a sentence"; char str2[100];
const char *str1="a sentence"; char str2[100]="here is ";
const char *str1="ENIB"; char str2[ /* À DÉTERMINER */ ];
const char *str1="ian"; char str2[ /* À DÉTERMINER */ ]="Enib";