printing a string

Dave Korn dave.korn@artimi.com
Tue Jan 8 15:36:00 GMT 2008


On 08 January 2008 06:06, ranjith kumar wrote:

> I know that a variable can be print in gdb by
> "print var".
> 
> But how to print a string???

  "print" will display a string, if you're printing a variable of type "char
*", or a std::string.

  Or you can use "x" (examine) with the "/s" modifier if you just have a
memory address.

    cheers,
      DaveK
-- 
Can't think of a witty .sigline today....



More information about the Gdb mailing list