Skip to content

Instantly share code, notes, and snippets.

View rasvob's full-sized avatar

Radek Svoboda rasvob

View GitHub Profile
@rasvob
rasvob / Approx_ex.c
Last active September 30, 2020 06:55
#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);