Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2025 Foundation Course
NEET 2025 Foundation Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
75 views
in Computer by (55.2k points)
closed by

फ्रेंड क्लास के लिए एक प्रोग्राम लिखिए।

1 Answer

+1 vote
by (57.2k points)
selected by
 
Best answer
#include<iostream> 
using namespace std; 
class second; //forward declaration 
class first
{
int x; 
public: 
void set_value(int a)
{
x=a;
}
friend void max (first, second); 
}; 
class second
{
int y; 
public:
void set value (int b)
{
y=b;
friend void max (first, second);
};
void max (first f, second s)
{
if (f.x>s.y)
cout<<"Maximum is"<<f.x; 
else 
cout<<"Maximum is"<<s.y;
}
int main()
{
first A; 
second B; 
A.set value (10); 
B.set value (20); 
max (A,B);//calling friend function 
return 0
}

प्रोग्राम का आउटपुट होगा
Maximum is 20

Related questions

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...