Merge branch 'master' of https://git.cscherr.de/PlexSheep/c-basic
This commit is contained in:
commit
5532922411
|
@ -62,3 +62,5 @@ build
|
|||
CMakeCache.txt
|
||||
Makefile
|
||||
src/huffman/testfiles
|
||||
data
|
||||
cmake_install.cmake
|
||||
|
|
|
@ -21,6 +21,7 @@ add_executable( echochar src/echochar.c )
|
|||
add_executable( euler src/euler.c )
|
||||
add_executable( factorial src/factorial.c )
|
||||
add_executable( fail src/fail.c )
|
||||
add_executable( fib src/fib.c )
|
||||
add_executable( fread src/fread.c )
|
||||
add_executable( hello-world src/hello-world.c )
|
||||
add_executable( options src/options.c )
|
||||
|
|
|
@ -47,4 +47,3 @@ int main(int argc, char *argv[]){
|
|||
printf("calculated eulers number as %f\n", res);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,29 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
const int START_VALUES[2] = {0, 1};
|
||||
const int LIMIT = 90;
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
if (argc != 2) {
|
||||
printf("usage: %s MAX_NUMBER\n", argv[0]);
|
||||
exit(1);
|
||||
}
|
||||
int max = atoi(argv[1]);
|
||||
if (max > LIMIT) {
|
||||
printf("C does not provide a datatype large enough to compute fibonacci numbers > %d. (%d)\n", LIMIT, max);
|
||||
exit(1);
|
||||
}
|
||||
uintmax_t* nums = malloc(max * sizeof(uintmax_t));
|
||||
nums[0] = START_VALUES[0];
|
||||
nums[1] = START_VALUES[1];
|
||||
|
||||
for(int i = 2; i < max+1; i++) {
|
||||
nums[i] = nums[i-2] + nums[i-1];
|
||||
}
|
||||
|
||||
for(int i = 0; i < max+1; i++) {
|
||||
printf("%02d. %ju\n", i, nums[i]);
|
||||
}
|
||||
}
|
|
@ -2,8 +2,8 @@
|
|||
#include <string.h>
|
||||
|
||||
int my_strlen(const char *s) {
|
||||
int len = 0;
|
||||
while (s[len] != 0) {
|
||||
register int len = 0; // try to use a register instead of a stack variable
|
||||
while (s[len]) {
|
||||
len++;
|
||||
}
|
||||
return len;
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void)
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
char filename[] = "file.txt";
|
||||
if (argc != 2) {
|
||||
printf("usage: %s FILE", argv[0]);
|
||||
exit(1);
|
||||
}
|
||||
char* filename = argv[1];
|
||||
char buf[2];
|
||||
FILE *fp;
|
||||
|
||||
|
|
Loading…
Reference in New Issue