Search Results

2
votes

What appear to be the more lucrative programming skills at the moment?

As a good rule of thumb, the more you are managing others at your programming job, the more pay you will earn. Higher specialization gains you more money, but also makes th …
0
votes

Fibonacci Code Golf

Not the shortest, but the fastest at the time of posting. :-) float f(float n) { return (pow(1+sqrt(5.0))/2.0),n) - pow(1+sqrt(5.0))/2.0),n)/sqrt(n)); } …
1
vote

Language showdown: how do you make a system call that returns the stdout output as a string?

In C on Posix conformant systems: #include <stdio.h> FILE* stream = popen("/path/to/program", "rw"); fprintf(stream, "foo\n"); /* Use like you would a file stream. */ fclose …