1
vote
Why does a pointer change itself during function transition?
In general, this should never happen. Problems that can cause this type of symptoms include incompatibility in the compilation options between the calling and the caller modules, bad casting of mem …
2
votes
How exactly does cin work with stdin
When you use operator >> from stdin to an integer, it reads an integer from the input stream. If the input stream is empty, it waits until it finds an integer. In your case, it is simply not empty. …
2
votes
How would you list the available functions etc contained within a compiled library?
use this command:
objdump -t "your-library"
It will print more than you want - not just function names, but the entire symbol table. Check the various attributes of the symbols you …
7
votes
