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
~7K People Reached
Favorite Forums

5 Posted Topics

Member Avatar for winbatch

When you pass a pointer to a function make sure to allocate the memory before passing to the function. In your program u were not allocating memory before passing on to the function. The memory was allocated within the function. Which was in the local scope of the function itself. …

Member Avatar for Narue
0
282
Member Avatar for vancasas

There is a tool 'oxygen' which generates the document from your C++ code. Provided you have sufficient remarks in it

Member Avatar for Sutanu
0
135
Member Avatar for charlie_help

I do not understand why you want to directly use a tcp/ip connection for fetching the data. Rather creater a dsn to be used over the network to access the sqlserver data. From your Cpp file use Sqlconnect using the dsn name. Prepare the stmt and exceute the sql statement …

Member Avatar for charlie_help
0
254
Member Avatar for Sutanu

[FONT=Trebuchet MS]Dear all: I've created TCPsocket in linux using C++. It receives an array of unsigned characters. I need the corresponding hex values in character format. i.e. "ABC" in hex it is "414243". Now I want to treat each of "414243" as character. So I have done the coding as …

Member Avatar for Sutanu
0
2K
Member Avatar for nico

There is nothing called a negative ASCII value. Every symbol should have an ASCII value. I think you wanted to print the character variable using a %d notation, for which you received -69. As already mentioned in many messages below you should have your system char as unsigned char. But …

Member Avatar for Sutanu
0
5K

The End.