I use gdb debugger to print values of a variable which is of type ZZ. This data type is defined in Number Theory Library or NTL. When I use "print x" to find out my variable's value I obtain something like this:
print x
$1 = {rep=0xab2cc54}.
I guess this is the address of my ZZ object. How can I print its value ? I should mention that I don't know the internal representation of this class.
Can I use NTL with a compiler like Eclipse to debug easier my application ?
This is a bit ugly, but works:
(in this example, the variable
x
has the value42
).If you don't want the garbage after the value, you can cast to
void
:(but note that then there's no newline after the value).
If you're not
using namespace std
, you may have to writeSometimes
cerr
may not be in scope:- then you can try with
cout
, but it gets even uglier, because the buffered output has to be flushed: