1
vote
MPI or Sockets
I have not used MPI, but I have used sockets quite a bit. There are a few things to consider on high performance sockets. Are you doing many small packets, or large packets? If you are doing many s …
0
votes
Printing leading 0’s in C?
sprintf(mystring, "%05d", myInt);
"05" says use 5 digits, with leading zeros.
…
1
vote
Is there a need to use assembly these days?
It is worthwhile to have an know assembly even if you don't use it. I helps in understanding what is going on in your higher level languages. I was amazed when I was in college at how many Java p …
0
votes
Why use hex?
To be more precise, hex and decimal, are all NUMBERS. The radix (base 10, 16, etc) are ways to present those numbers in a manner that is either clearer, or more convenient.
When discussing …
0
votes
macro definition containing #include directive
I will not argue the merits for it, but freetype (www.freetype.org) does the following:
#include FT_FREETYPE_H
where they define FT_FREETYPE_H elsewhere
…
3
votes
Will .net take over c/c++ any time?
This is similar to what a professor of mine said in the early 80s - PASCAL should be used for everything. I don't think so. Different languages have different purposes. The problem is that people …
1
vote
Determining the alignment of C/C++ structures in relation to its members
As the others mentioned, its implementation dependant. Visual Studio 2005 uses 8 bytes as the default structure alignment. Internally, items are aligned by their size - a float has 4 byte alignmen …
