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
Maths ztransform and difference equation
Category: NotesJuly 16, 2022
BL Thareja Volume 2 PDF
Category: eBooksJuly 16, 2022
Measuring Instruments Notes - Unit 3
Category: NotesJuly 16, 2022
Fundamentals of Computing Question Papers Akash PDF
Category: Question PapersJuly 16, 2022
Marketing Management Unit 3 Notes PDF
Category: NotesJuly 17, 2022
Queue Implementation Using Array C Program
Category: Practical FilesJuly 16, 2022
Sociology Important Topics
Category: NotesJuly 17, 2022
Project Management Notes Unit 1
Category: NotesJuly 17, 2022
BBA International Business Management Notes Unit 2
Category: NotesJuly 17, 2022
Productions and Operations Management Notes Unit 4
Category: NotesJuly 17, 2022