Forum: C++ Aug 21st, 2005 |
| Replies: 7 Views: 1,583 Yeah you are right. I'm sorry, it should be Doxygen and not oxygen. |
Forum: C++ Aug 20th, 2005 |
| Replies: 11 Views: 3,541 Please note that my advice was not for you but for winbatch who wrote this word 'confuzzled' after you message in the same thread.
My intention was not to make any advice as you may be more... |
Forum: C++ Aug 20th, 2005 |
| Replies: 11 Views: 3,541 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... |
Forum: C++ Aug 20th, 2005 |
| Replies: 7 Views: 9,142 Thanks for the concern.
The scenario I'm talking about doesn't permit you to have any values other than 0-9 and A-F.
In other scenarios or to have a generic one I think using a isdigit() is a... |
Forum: C Aug 20th, 2005 |
| Replies: 8 Views: 10,104 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... |
Forum: C++ Aug 20th, 2005 |
| Replies: 2 Views: 1,842 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... |
Forum: C++ Aug 20th, 2005 |
| Replies: 7 Views: 1,583 There is a tool 'oxygen' which generates the document from your C++ code. Provided you have sufficient remarks in it |
Forum: C++ Aug 20th, 2005 |
| Replies: 7 Views: 9,142 Thanks again.
I performed a dry run. I think it would be better to use
if (*src <= '9')
rather than
if (isdigit(*src)) |
Forum: C++ Aug 19th, 2005 |
| Replies: 7 Views: 9,142 Thanks for the reply.
I understand you have removed some operations. That reduces quite a big time.
I think this can further be minimized. Do you have any idea of doing this with the help of... |
Forum: C++ Aug 19th, 2005 |
| Replies: 7 Views: 9,142 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... |