1
vote
Make GDB print control flow of functions as they are called
Did you see litb's excellent anser to a similar post here ?
He uses readelf to get …
1
vote
Do you declare your module specific functions as static?
I think C and C++ have different constraints concerning static: in C you don't have namespaces and .c files are your modules, so it is really really important to put all non-public fun …
3
votes
How do I base64 encode (decode) in C?
But you can also do it in openssl (openssl enc command does it....), look at the BIO_f_base64() …
0
votes
What is the difference between a static global and static volatile variable?
I +1 friol's answer. I would like to add some precisions as there seem to be a lot of confusions in different answers: C's volatile is not Java's volatile.
So first, compilers can do a lot …
1
vote
Difference between a Structure and a Union in C
You have it, that's all.
But so, basically, what's the point of unions?
You can put in the same location content of different types. You have to know the type of what you have stor …
