eaiib

 0    3 fiche    akrzeminska1519
Télécharger mP3 Imprimer jouer consultez
 
question réponse
How to calculate the lenght of the text passed as an argument to the following function: void foo(const char*txt){}
commencer à apprendre
txt. length()
What can you say about following declaration: int t[10] = {1,2,[4] =1}
commencer à apprendre
(C99) it will create an array with 10 element and seven of them will be 0
How to calculate length of array in the foo(): void foo(double t[]){}
commencer à apprendre
int len; for(len=0; t[len]; len++)

Vous devez vous connecter pour poster un commentaire.