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 IamaSherpa 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: *

  1. arul77

    Abt.. Referring Subclass members thru base class object

    All Tx for your efforts.. I will use this solution
  2. 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...
  3. arul77

    Copy char array into integer array

    hi I am a new child for c programming, the need arised when i tried to read a file using fgets into an chararray. I need to transfer the value in the char array [which i know is a numeric value] into an int variable, since i need to convert that value read from file into ASCII, using...
  4. arul77

    Copy char array into integer array

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

    Regd., UNIX Message Queues

    Michael Tx for your efforts I really mean IPC Queue......
  6. 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