This file contains 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
Software development | |
- Which platforms (Linux, Windows, Mac, Embedded) will I develop for? | |
- What programming languages are you using for which kind of projects / applications? | |
- What Development Environment are you using? | |
- Are you using any coding style guidelines? If yes, can I take a look at the document? | |
- Are you actively supporting / allowing time for keeping your code base maintainable and up to date? | |
- How do you handle documentation? Is there time reserved specifically for documenting projects? |
This file contains 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" | |
/*Beliebige Anzahl an Zahlen einlesen:*/ | |
void inputNumbers(int *size, double **doublePtr){ | |
int i; | |
/* Abfrage nach Anzahl der Zahlen */ | |
printf("Anzahl der zu speichernden Zahlen:\n"); | |
scanf("%d", size); |
This file contains 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" | |
/*Beliebige Anzahl an Zahlen einlesen:*/ | |
double* inputNumbers(int *size){ | |
int i; | |
/* Abfrage nach Anzahl der Zahlen */ | |
printf("Anzahl der zu speichernden Zahlen:\n"); | |
scanf("%d", size); |