eaiib

 0    3 schede    akrzeminska1519
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
How to calculate the lenght of the text passed as an argument to the following function: void foo(const char*txt){}
inizia ad imparare
txt. length()
What can you say about following declaration: int t[10] = {1,2,[4] =1}
inizia ad imparare
(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[]){}
inizia ad imparare
int len; for(len=0; t[len]; len++)

Devi essere accedere per pubblicare un commento.