CODE FOR + OPERATOR OVER LOADING C++

 PROBLEM STATEMENT: ADD 2 OBJECTS AND ADD INTO OTHER. CODE: #include<iostream> using namespace std; class Experience { private: int days; int month; double year; public: Experience() { } Experience(int a,int b,double c) { days = a; month = b; year = c; } Experience operator +(Experience E) { Experience E1; E1.days = days + E.days; E1.month = month + E.month; E1.year = year + E.year; return E1; } void display() { cout << "\nDAYS\t" << days << "\nMONTHS\t" << month << "\nYEAR\t" << year << endl; } }; int main() { Experience e1(2, 12, 2), e2(1, 12, 4), e3; e3 = e1 + e2; cout << "showing data of 1st Experience\n"; e1.display(); cout << "\n\n\n\n"; cout << "showing data of 2nd Experience\n"; e2.display(); cout << "\n\n\n\n"; cout << "showing data of sum of Experiences\

HOW TO DOWNLOAD GTA V FREE ON PC?

 DOWNLOAD GTA V FREE FOR PC

Grand Theft Auto V (GTA 5), for PC, download for pc, full version game, full pc game, Compressed , RIp Version,Developer/Publishers:Rockstar North, Rockstar Games

Grand Theft Auto V (59 GB) is an action-adventure video game developed by Rockstar North and published by Rockstar Games. It was released on September 17, 2013 for Windows. Players complete missions—linear scenarios with set objectives—to progress through the story. Outside of the missions, players may freely roam the open world. Composed of the San Andreas open countryside area, including the fictional Blaine County, and the fictional city of Los Santos, the world is much larger in area than earlier entries in the series.



Before downloading make sure that your PC meets minimum system requirements.
Minimum System Requirements

  • OS: Windows Vista Service Pack 2 / 7Service Pack 1 / 8 / 8.1* (*NVIDIA video card recommended if running Vista OS)
  • Processor: Intel Core 2 Quad CPU Q6600 @ 2.40GHz (4 CPUs) / AMD Phenom 9850 Quad-Core Processor (4 CPUs) @ 2.5GHz
  • RAM: 4 GB
  • Hard Drive: 65 GB free
  • Video Card: NVIDIA 9800 GT 1GB / AMD HD 4870 1GB (DX 10, 10.1, 11)
  • Sound Card: 100% DirectX 10 compatible
  • DirectX: 10
  • Keyboard and Mouse

DOWNLOAD FROM HERE

OR SECOND LINK IS:
HOPE THESE LINKS WILL HELP YOU TO DOWNLOAD GAMES
FOR MORE INFORMATION PLS SUBSCRIBE

Comments

Post a Comment

Popular posts from this blog

CODE FOR CAR AND BIKE MANAGEMENT USING(Virtual functions) C++

NESTED LOOPS IN C++