- GitHub Staff
- @lumaxis
- @[email protected]
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| struct IntKnotenStruct { | |
| int data; | |
| struct IntKnotenStruct *next; | |
| struct IntKnotenStruct *prev; | |
| }; | |
| typedef struct IntKnotenStruct IntKnoten; |
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
| #include "stdio.h" | |
| #include "stdlib.h" | |
| void inputNumbers(int *size, double **numbers){ | |
| int i; | |
| /* Abfrage nach Anzahl der Zahlen */ | |
| printf("Anzahl der zu speichernden Zahlen:\n"); | |
| scanf("%d", size); |
NewerOlder