4
votes
Should I use #define, enum or const?
Enums would be more approprite as they provide "meaning to the identifiers" as well as tape safety. You can clearly tell "xDeleted" is of "RecordType" and that represent "type of a record" (wow!) e …
0
votes
Difference between managed c++ and c++
Managed C++ means that memory allocation, management, garbage collection is handled by the virtual machine. Whereas in "regular" C++ you would have to allocate and deallocate memory.
…
2
votes
Resources for high performance computing in C++
The first thing might be reading about MPI(Message Passing Interface) which is the de facto standard in HPC node interconnects.
…
13
votes
How do I check OS with a preprocessor directive?
There are predefined macros that are used by most compilers, you can find the list here
Otherwise, you will have to adj …
6
votes
What C/C++ functions are most often used incorrectly and can lead to buffer overflows?
In general, any function that does not check bounds in the arguments. A list would be
gets()
scanf()
strcpy()
strcat()
You should use size li …
