Functions in C - examples

Nasza ocena:

3
Wyświetleń: 595
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Functions in C - examples - strona 1

Fragment notatki:

Functions in C A function definition has this form: return-type function-name(paramet er declarations, if any) { declarations statements } Example: /* power: raise base to n-th power; n = 0 */ int power(int base, int n) { int i, p; /* local variables */ /* maybe check if n is really = 0 */ p = 1; for (i = 1; i ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz