Calling a function - examples

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Calling a function  - examples - strona 1

Fragment notatki:

Calling a function /* test the power function */ int main() { int i; for (i = 0; i

(…)


Calling a function
/* test the power function */
int main()
{
int i;
for (i = 0; i < 10; i++)
printf("%d %d %d\n",
i, power(2,i), power(-3,i));
return 0;
}
Results:
0 1 1
1 2 -3
2 4 9
3 8 -27
4 16 81
5 32 -243
6 64 729
7 128 -2187
8 256 6561
9 512 -19683

... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz