Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to convert an integer value to string in GLib. Is there any macro or function to da that? Or Can i store different data types in the same doubly linked list?

share|improve this question

1 Answer

  1. gchar *my_string = g_strdup_printf("%i", my_integer);
  2. Yes, you can store any pointer you want, or even an integer using GINT_TO_POINTER, but how will you know what data type to get back out?
share|improve this answer
1.Thanx a lot for ur answer... 2.I am actually storing an expression in a doubly linked list. So all odd nodes (starting from 0) will be operators and even nodes the operands. – Ashwin Mar 22 '10 at 12:08
1  
You're welcome. Maybe you should use a tree for that, otherwise how will you give different operators different priorities? – ptomato Mar 22 '10 at 13:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.