Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums

13 Posted Topics

Member Avatar for tarakant_sethy

Hi, i am compiling the code in HP itenium server and i am getting an error. "Filename.cpp", line 129: error #2308: more than one instance of overloaded function "std::basic_string<_CharT, _Traits, _Allocator>::assign [with _CharT=char, _Traits=std::char_traits<char>, _Allocator=std::allocator<char>]" matches the argument list: function "std::basic_string<_CharT, _Traits, _Allocator>::assign(const std::basic_string<_CharT, _Traits, _Allocator> &) [with _CharT=char, _Traits=std::char_traits<char>, …

Member Avatar for tarakant_sethy
0
101
Member Avatar for IMJS

Was I right in believe that thisMyClass was out of scope in myFunction()? NO, you sending a pointer to the function and then deleting it. so thr should notbe any problem or memory leak. Am I right in passing by reference in this case where I am expecting thisMyClass to …

Member Avatar for mrnutty
0
187
Member Avatar for viji.cs

just look at the suntax of stcmp() and u will be able to understand. int strcmp ( const char * str1, const char * str2 ); it take address of the char, not the char.

Member Avatar for viji.cs
0
77
Member Avatar for tarakant_sethy

I do have some doubts and i need help from you. When we call a function which is virtual from a base class pointer to which the address of derived class object, it sees where vpointer, from vpointer it gets the address fo virtual table, manipulate offset and call the …

Member Avatar for sanjeevarao
0
91
Member Avatar for Web_Sailor

or probably the range i.e 10 you are puting, that number of characters are not there in the string that you want to replace. so, just check the value of the string and debug it.

Member Avatar for Fbody
0
395
Member Avatar for Excizted

as the error show it is a 64 bit machine, you need to include -fPIC at your compailation line and it should work then.

Member Avatar for tarakant_sethy
0
161
Member Avatar for tarakant_sethy

Hi, some time back i faced question like this. we ca use factory design using factory desing implementation. we can do the same using the shared laibrary, like we will have a static function in the shared laibrary which will be returning pointer to base class object. what is the …

Member Avatar for Narue
0
72
Member Avatar for tarakant_sethy

Hi i am doing a client server program in c. waht i feel is everytihng is correct in the c code but there is some problem in the setting. here is the server code [CODE] /* Make the necessary includes and set up the variables. */ #include <sys/types.h> #include <sys/socket.h> …

Member Avatar for Salem
0
101
Member Avatar for tarakant_sethy

Hi Guys, is there any other way to use shared library in unix and linux platform apart from dlopen() and dlsym(). Thanks.

Member Avatar for tarakant_sethy
0
84
Member Avatar for cerb63

the program has many pros, 1. constructor has no definition. 2. in the cout u r trying to access the private variables directly write a contructor and a public function to access display the private data

Member Avatar for tarakant_sethy
0
150
Member Avatar for tarakant_sethy

Hi friends, i have to delete a node in a link list and the prototype for the delete function is like this void deleteNode(struct node**, int pos). "Pos " is the position of the specified node in the list. And have to write it with all boundry condiotions. Help me

Member Avatar for Luckychap
0
126
Member Avatar for rathmal
Member Avatar for tarakant_sethy

hi i m a new member. i have a question. so plz answer me if any one have the answer. how can i delete a node without traversing the linkedlist. let's say want to delete the third node of the linkedlist without traversing it. thank u

Member Avatar for Ancient Dragon
0
80

The End.