Search Results

1
vote

Why is foo(n++, n) not working?

The order of evaluation for arguments to a function is undefined. In this case it appears that it did them right-to-left. (Modifying variables between sequence points basically allows a co …
1
vote

Why can’t I convert ‘char**’ to a ‘const char* const*’ in C?

This is annoying, but if you're willing to add another level of redirection, you can often do the following to push down into the pointer-to-pointer: char c = 'c'; char *p = &c; …
0
votes

Reset screen point to the top of screen in Windows & Linux console

Yes, for unix platforms, curses (or ncurses, these days) is the way to go. And there are versions that work under windows, so you could do it the same way on both systems. …
0
votes

Is there a printf converter to print in binary format?

No standard and portable way. Some implementations provide itoa(), but it's not going to be in most, and it has a somewhat cru …
1
vote

curses API

The documentation that comes with the library actually isn't that bad. http://tldp.org/HOWTO/NCURSES-Programming-HO …
0
votes

How can one grab a stack trace in C?

solaris has the pstack command, which was also copied into linux. …
3
votes

Best way to capture stdout from a system() command so it can be passed to another function

EDIT: misread question as wanting to pass output to another program, not another function. popen() is almost certainly what you want. System gives you full access to the shell. If you wan …
2
votes

Does ANSI C support signed / unsigned bit fields?

Yes, it can. C bit-fields are essentially just limited-range integers. Frequently hardware interfaces pack bits together in such away that some control can go from, say, -8 to 7, in which case yo …
3
votes

printf + uint_64 on Solaris 9?

On a C99 compliant system: #include <inttypes.h> uint64_t big = ...; printf("%" PRIu64 "\n", big); See section 7.8 of the C99 standard. The specifi …
4
votes

Making a Nonblocking socket for WinSocks and *nix

select() is supposed to work on blocking sockets. It returns when a read() would return immediately, which is always the case with non-blocking sockets. …
0
votes

Any Tools to Catch Silly Mistakes in C Code?

A good syntax highlighter will make some cases like this more visible. …
1
vote

Binary “tail” a file

This isn't tail -- this is progressively copying a file. Look at rsync. …
12
votes

So you think you know pointers?

0x12345678 0x1234567C 0x12345678 0x12345688 …
2
votes

Using ‘__progname’ instead of argv[0]

It's a BSDism, and definitely not portable. …