Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: arul77
  • Content: Threads
  • Order by date
  1. arul77

    Abt.. Referring Subclass members thru base class object

    class one { public : int a; }; class two :public one{ public: int d; } class test { union{ one a; }; }; int main(){ test obj; obj.a.d=10; printf("%d",a.d); return 0; } My problem is i need to have a class object in an union,[since there is a rule that union...
  2. arul77

    Copy char array into integer array

    Is there any way to copy an char array into integer array without using a loop structure..
  3. arul77

    Regd., UNIX Message Queues

    Hi all could you professionals find me a way how to insert/modify a message in the message queue.... Thanks Arul

Part and Inventory Search

Back
Top