Find greatest of two numbers in two different classes using friend function C++
greatest_friend.cpp.txt
File size: 497 Bytes
File content type: text/plain
Category: Practical Files
Subject: Object Oriented Programming
Download greatest of two numbers using friend function C++ generally taught in Object Oriented Programming.
#include<iostream>
using namespace std;
class B; //declare class B
class A {
private:
int a;
public:
//constructor
A(int a) {
this->a = a;
}
friend int max(A a, B b);
};
class B {
private:
int b;
public:
//constructor
B(int b) {
this->b = b;
}
friend int max(A a, B b);
};
int max(A a, B b) {
return (a.a > b.b ? a.a : b.b);
}
int main() {
A a(10);
B b(15);
cout << "Greatest is : " << max(a, b);
return 0;
}
Last Updated: July 16, 2022
Related
FOC Akash Question Paper 2017
Category: Question PapersJuly 16, 2022
BBA MPOB Notes Unit 3
Category: NotesJuly 16, 2022
BE IPU Notes Unit 3
Category: NotesJuly 16, 2022
Applied Physics 2 Quantum Mechanics Notes
Category: NotesJuly 16, 2022
Sales Distribution Management Notes Unit 2
Category: NotesJuly 17, 2022
Applied Chemistry I Lab File Hand Written
Category: Practical FilesJuly 16, 2022
FOC Practical File PDF
Category: Practical FilesJuly 16, 2022
Indian Economy Notes PDF Unit 1
Category: NotesJuly 17, 2022
Engineering Graphics Sheets 2018
Category: Practical FilesJuly 16, 2022
Laplace Transform Notes PDF
Category: NotesJuly 16, 2022