Skip to content

Instantly share code, notes, and snippets.

View binarybucks's full-sized avatar

Alexander Klautke binarybucks

View GitHub Profile
@binarybucks
binarybucks / jobinterviewquestions.txt
Created January 31, 2012 13:35 — forked from hdznrrd/jobinterviewquestions.txt
Job Interview Questions you Should Ask
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?
@binarybucks
binarybucks / A9.c
Created January 27, 2012 11:40 — forked from lumaxis/A9.c
Mittelwert beliebig vieler Zahlen (double Ptr)
#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);
@binarybucks
binarybucks / A9.c
Created January 27, 2012 11:34 — forked from lumaxis/A9.c
Mittelwert beliebig vieler Zahlen (Returning Ptr)
#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);