This repository has been archived on 2019-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
s4-c/P68-2.c

11 lines
168 B
C

#include <stdio.h>
char tab[] = "Bananier";
int main() {
int i;
printf("Nombre de caractères du tableau = %d\n", sizeof(tab)/sizeof(char));
return 0;
}