#include #include int main(void) { size_t tc , ti , tf , td ; char c ; char ch[10] ; int i ; int tabi[10]; float f ; float tabf[10]; double d ; double tabd[10]; tc = sizeof( char ) ; ti = sizeof( int ) ; tf = sizeof( float ) ; td = sizeof( double ) ; printf("Pour ce compilateur : \n"); printf("char : %d , int : %d , float : %d double : %d\n",tc , ti , tf , td ); tc = sizeof( c ) ; ti = sizeof( i) ; tf = sizeof( f) ; td = sizeof( d ) ; printf("char : %d , int : %d , float : %d double : %d\n",tc , ti , tf , td ); tc = sizeof( ch ) ; ti = sizeof( tabi ) ; tf = sizeof( tabf ) ; td = sizeof( tabd ) ; printf("Tableaux de 10 : \n"); printf("char : %d , int : %d , float : %d double : %d\n",tc , ti , tf , td ); //system("pause"); return 0 ; }