This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <stdio.h> | |
| float approx_ex(int x, int iter_count); | |
| int factorial(int n); | |
| int power(int x, int n); | |
| int main() { | |
| int x; | |
| printf("Zadejte exponent x:\n"); | |
| scanf("%d", &x); |