Tuesday, August 26, 2014

C++ Tutorial for Beginners 33 - C++ Multiple Inheritance







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <iostream>
#include<string>
using namespace std;
///polygon // rectangle square triangle "is a " Animal dog cat
class shape
{
public:
void setValues(int a ,int b){
width=a;
height=b;
}
protected:
int height ;
int width;
};
class description
{
public:
void print(string description_)
{
std::cout<<"We are using "<<description_<<" Class"<<std::endl;
}
};
class rectangle : public shape ,public description
{
public:
int area(){
return (height * width);
}
};

int main()
{
rectangle rec;
rec.setValues(15,10);
std::cout<<"area Rectangle= "<<rec.area()<<std::endl;

rec.print("Rectangle");
}


















-------------------------------------------------------------

c++ multiple inheritance same function name

c++ virtual inheritance

c++ multiple inheritance same base class

c++ multiple inheritance syntax

c++ multiple inheritance diamond

c++ inheritance multiple files

c++ multiple inheritance casting

c++ multiple inheritance destructor

Monday, August 18, 2014

Free Download Paid ios Apps Without Jailbreaking Your iPhone/iPad

Free Download Paid ios Apps Without Jailbreaking Your iPhone/iPad
Apple users may not be able to free download apps like android users. This limitation can be overcome if the device is jail broken. However, for folks like me who doesn't like jail breaking there is no other option left than this trick. This trick is not any hack or something you call illegal. Without further talking lets come to the trick itself. This trick works for android users as well!
  1. Go to Appnana from your ios/android device and register as a new user.
  2. Go to the Get Nanas tab. You will find a lot of offers that are both paid and free.
    Free Download Paid ios Apps Without Jailbreaking Your iPhone/iPad
  3. Complete the offers that you like the most. Once the app is downloaded open it to receive you nanas. 
  4. Earn enough nanas to exchange them for rewards.
Bonus Points
  • You can get bonus point for signing up.(10,000 Nanas)
  • 400 Nanas for daily activity.
  • Invite friends to earn nanas.
How Much Nanas Do I need To Have?
Having lots of nanas is always great. You can exchange nanas for gift cards, amazon vouchers, bitcoins, steam voucher, in app purchases, paypal money,etc.
You will need to have 30,000 nanas for downloading a $0.99 worth app.

This trick works for Android users as well. So please don't hesitate to invite your friends to earn more nanas. Please share this trick with your friends along with your invitation code!

You may also like: Call for free from iDevice without jailbreaking
                             Top 10 ios7 Features that you don't know
Read more apple tricks here

 

© 2013 Klick Dev. All rights resevered.

Back To Top