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
Services Marketing Notes Unit 4
Category: NotesJuly 17, 2022
BBA Project Management Notes Unit 3
Category: NotesJuly 17, 2022
Introduction to Wireless Channels and Diversity (WC)
Category: NotesJuly 16, 2022
Stepper Motor Book Notes
Category: NotesJuly 16, 2022
IPU ECE 6th Sem Syllabus
Category: SyllabusJuly 17, 2022
IPU Sales and Distribution Management Notes Unit 4
Category: NotesJuly 17, 2022
Java Program Read and Write to a Binary File example
Category: Practical FilesJuly 16, 2022
Sales Distribution Management Notes PDF
Category: NotesJuly 17, 2022
Analog electronics (1and2)
Category: NotesJuly 17, 2022
Unit 1 - Fuels
Category: NotesJuly 16, 2022