when my application exe is running nad i don't want to
create another exe what should i do
Answer Posted / ramachandran
We can use mutex to avoid one more creation.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout< Which type does string inherit from? Why polymorphism is used in oops? what is difference between class template and template class? What is coupling in oop? What is an example of genetic polymorphism? How do you answer polymorphism? class CTest
{
public:
void someMethod()
{
int nCount = 0;
cout << "This is some method --> " << nCount;
}
};
int main()
{
CTest *pctest;
pctest->someMethod();
return 0;
}
It will executes the someMethod() and displays the value
too. how is it possible with our creating memory for the
class . i think iam not creating object for the class.
Thanks in Advance...
Prakash What is inheritance and how many types of inheritance? program for insertion ,deletion,sorting in double link list
What is the advantage of oop over procedural language? What is encapsulation in simple terms? Prepare me a program for the animation of train What is the example of polymorphism? Can you inherit a private class?