Search:
Type: Posts; User: avi123
Search :
Search took 0.03 seconds.
February 16th, 2009 12:38 PM
Hi,
I would like to use setsockopt with the SO_KEEPALIVE parameter
What I can't find is how I set the following:
1. How often to send the keep alive message from the client to server
2....
September 24th, 2007 12:56 PM
sure, but what are the possible outputs and why?
Thanks
Avi123
September 20th, 2007 06:31 AM
Hi,
Suppuse I have the following function
static int staticIntX = 2;
int inc()
{
staticIntX++;
return staticIntX;
Thanks Philip,
Are there any other operators where left to right order is not guaranteed?
Thanks
Avi123
Thank you both for your quick response
However I still not sure,
Krishnaa: you say that the left side will be calulated first, however then you say that in order not to depend on compiler, are...
Hi,
Can I do something like this:
X *pX;
do
{
//.....
}while((pX != NULL) && (pX->func() >2))
Hi,
Is there a difference between those 2 statements:
str1 = new char[50];
and
str2 = new char(50);
both str1 and str2 were defined like this:
char* str1=null;
February 5th, 2007 12:01 PM
Thanks
That's exactly what I have needed
February 5th, 2007 03:54 AM
I still do not understnad what is the different meaning of the const location:
1. What is the difference meaning of the const location?
a. static const char* x = "abc"
b. const static char* y...
February 4th, 2007 10:06 AM
Hi,
I have 2 C++ basic questions:
1. I understood that using this:
for(int i=0; i<5; ++i)
is better than using this:
for(int i=0; i<5; i++)
February 4th, 2007 09:47 AM
Hi,
I have 2 basics (or at least I think they are) C++ question
1. What is the difference meaning of the const location?
a. static const char* x = "abc"
b. const static char* y =...
Hi,
I hope that this is the correct forum for this question, if not I ask for your forgiveness.
I need to find the Minimal Spanning Tree, on a Multi Graph,
I'm using Java in Eclipse enviroment....
September 22nd, 2005 01:50 AM
Then what is the probelm using it?
I mean besdie efficency...
Thanks
avi123
September 21st, 2005 08:46 AM
and if I have a copy constructor will it be called when I use:
Baz bazObject = foo.GetBaz(); // Works, but takes a copy of the baz object
Thanks again
avi123
September 20th, 2005 02:27 AM
what if I use this:
Baz bazObject = foo.GetBaz(); // Works, but takes a copy of the baz object
I understand it really copies the object, but does it have any pthere problems? for example what if...
September 19th, 2005 10:53 AM
Hi,
I'm not really returning an int but a reference to a struct I defined, it was just a simple example
The thing is that I don't really understand the meaing of a const reference return value,...
September 19th, 2005 10:52 AM
about the first answer, I don't understand if I use int num = getNum() , does it mean that I canceled the const?
another thing abuot the first answer, what if I get out of the scope of the int num...
September 19th, 2005 09:04 AM
Hi,
I was wondering what is the meaning of a function returning a const reference?
for example I have a function that defined like this:
const int& getNum() const;
how do I call this...
Hi,
I'm using ultoa to convert an unsigned long to string
but I'm having trouble to find the opposite function that will turn my string back to unsigned long
Can anyone help me?
Thanks in...
Thank you all very much :)
I know about all the other ways I can kill a process
and I would like to kill it according to the PID, is it possible?
If not how do I kill it if all I have is the name (xxx.exe) & the pid
...
Hi,
I'm looking for an API which enable killing a process according to its process ID.
Is there an API like that, I didn't find it
If not how can I kill a process, if I have its name (xxx.exe)...
I can't download the source! (Article not found!)
Thanks
Avi123
and how do I save it to a (bmp?) file & open this bmp (programmaticly) by some other application?
Thanks
Avi123
Hello,
How do I get the screen snapshot, is there an API for that?
Thanks
Avi123
Click Here to Expand Forum to Full Width