2
votes
Get full path of executable of running process on HPUX…
On HP-UX, use pstat:
#include <stdio.h>
#include <stdlib.h>
#include <limits.h>
#include <unistd.h>
#define _PSTAT64
#include <sys/pstat.h>
int main(int argc, char *argv …
9
votes
Using the open() system call
You probably need the third argument. For example:
open('path',O_WRONLY|O_CREAT,0640);
…
0
votes
Automatically replacing variables with #defines
You can't do exactly what you want, since by the time the compiler gets the pre-processor output, the "ONE" token is long gone. However, if your goal is to write the list of constants once but gene …
0
votes
2
votes
Why does glibc “timezone” global not agree with system time on DST?
I don't think "timezone" changes with daylight time. Try the "daylight" variable. On my system:
The external variable timezone contains the difference, in seconds,
between UT …
0
votes
Is There C Syntax For Function Pointer From Function Declaration
Not quite the same, but you can typedef the function and use it for both the prototype and the pointer.
typedef int fooFunc(int);
fooFunc foo;
fooFunc *aFunc;
…
13
votes
Saying “C & C# are equal by functionality, but not by concept”
Well, they are both Turing complete.
…
