Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
3
Posts with Downvotes
1
Downvoting Members
3
0 Endorsements
~1K People Reached
Favorite Forums
Favorite Tags
c++ x 8
c x 1
Member Avatar for angelinrajeesha

Hi, I am trying to call the borland C++ DLL from VS 2005 .But its giving Linking Error. Tried teh below one still its not working , Extract the DEF file from DLL converted the DEF to LIB file. Any one have any idea ? Thanks, Angelin

Member Avatar for Ancient Dragon
0
262
Member Avatar for angelinrajeesha

Hi, i have the following code not able get the output #include <stdio.h> #include <string.h> #define DELIMITER "," int main() { char *bufferPtr = " \"Angelin\",\"rajeesha\""; char *delimiterPtr =NULL; int parseIndex = 0; char ** fieldarray; fieldarray[parseIndex] = bufferPtr; parseIndex++ ; delimiterPtr = (char *)strstr(bufferPtr, DELIMITER); printf("\n delimiterPtr %s\n",delimiterPtr); bufferPtr …

Member Avatar for Ancient Dragon
0
99
Member Avatar for angelinrajeesha

Hi, Is it possible to allocate memory using malloc() (C) and release it using delete (C++) or even the opposite Alocate with new (C++) and release with free() (C) If not Why?

Member Avatar for mrnutty
0
123
Member Avatar for angelinrajeesha

Hi, what are the classes that cannot be instantiated in c++? I know that one of the ans is Abstract base class.what is the other one in c++? could you please help us?

Member Avatar for angelinrajeesha
0
614
Member Avatar for angelinrajeesha