eaiib

 0    3 Datenblatt    akrzeminska1519
mp3 downloaden Drucken spielen überprüfen
 
Frage Antworten
How to calculate the lenght of the text passed as an argument to the following function: void foo(const char*txt){}
Lernen beginnen
txt. length()
What can you say about following declaration: int t[10] = {1,2,[4] =1}
Lernen beginnen
(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[]){}
Lernen beginnen
int len; for(len=0; t[len]; len++)

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.