Log In

Have No More Disk Space Go On

You might be surprised after reading the header line that if you are running out of space delete windows. No kidding here , just saw this video which shows how to do it and enjoy.  Continue reading

Team Poison Hackers Get Caught Against Phone Bombing attempt to anti-terror unit.

Hacktivist Team Poison hacker group carried out a series of attacks against NATO , and then launched a two day phone bombing exercise against the anti – terror unit of Scotland’s Yard.

Two Teenagers of the age 16 and 17 have been arrested yesterday as a part of the investigation into the recording made of conversation on Scotland’s anti-terror hotline.  Continue reading

Overload '+' Operator

The + operator is arithmetic operator and you can easily overload it to concatenate your own user define objects of classes or structures. By default if you want to see the behaviour of the + operator you can use it as this in your program.

cout< <10 + 20;

30

or like this:

string s="hello";
string p=" pcfunia";
string q = s + p;
and when you cout the q you get hello pcfunia.

Or you can overload it easily by the method given below.
Continue reading

Overload New Operator Using Malloc.

In the old C language , for creating a memory dynamically , you have two operators malloc and realloc. In C++ this has been replaced with the new and delete operator , with the help of which you can easily create new memory or delete it.
Continue reading

Greater then Relational Operator Overload.

in the given program the operator function accepts an object on its right as a parameter, and the object on the left is passed by the this pointer.The return value of this operator function is an integer.
Continue reading

Overloading Assignment Operator '='.

You can easily overload assignment operator. Look at the example below. Continue reading