Error: (8192) Creation of dynamic property App\Layout\Layouts\Base\Base::$viewFile is deprecated

Socrative Pointeurs

Question 1 sur 6
Afficher toutes les questions

Que va afficher le code suivant ?

const size_t TAILLE = 5;
int tab[] = {1, 2, 3, 4, 5};

for(size_t i = 1; i < TAILLE; i *= 2){
   printf("%d", *(tab - (1 - i)));
}