1
vote
C (or any) compilers deterministic performance
How do you know that the compiler you are using generates machine code that matches the c code's functionality exactly and that the compiler is fully deterministic?
…
1
vote
What’s the easiest way to display an image in C/Linux?
The C language itself doesn't have any built-in graphics capability. You can use a graphics toolkit like Qt, gtk, wxWidgets, etc. You could also construct an image file ( …
1
vote
Is there a good and free ide for c/c++ in linux?
If you're doing Qt development, you could try QtCreator. I haven't used it much myself, but the debugger seems to wo …
4
votes
Should network packet payload data be aligned on proper boundries?
You look into Google protocol buffers, or Boost::serialize like another poster said.
If you want …
1
vote
Should network packet payload data be aligned on proper boundries?
If you don't have natural alignment in the structures, compilers will usually insert padding so that alignment is proper. If, however, you use pragmas to "pack" the structures (remove the padding) …
2
votes
simple C problem
You haven't said what the program is supposed to do, or what your problem is. That makes it hard to offer help.
At a guess, you really ought to initialize start and sum to zero, and perhap …
0
votes
A good serial communications protocol/stack for embedded devices?
Take a look at Profibus.
If you don't want master/slave, I think you ought to do the arbitration with hardware ( …
0
votes
Approaches to a GUI for a Large C Program
Depending on the nature of the program, you could create an entirely separate GUI application (in any language you prefer), and fork/execute the existing program from it, redirecting it's stdin and …
1
vote
Unpacking an executable from within a library in C/C++
Qt has an excellent method of achieving this: QResource
"The Qt resource system is a platform-independent mechanism for …
7
votes
How do I show the value of a #define at compile-time?
As far as I know '#error' only will print strings, in fact you don't even …
1
vote
Where can I get these header files?
Try the Debian package contents search page
(give a man a fish, etc.)
…
