April 05, 2025

What is message passing ? Describe with example.

 













class rectangle 

{

    public:

        void area(int l, int b)

        {

            cout<<"area="<< a;

        }

};

void main()

{

    rectangle r1;

    r1.area(10,5); //example of message passing

}














No comments:

Recent Posts

Very Large Scale Integration VLSI

1.1 Introduction to VLSI Very Large Scale Integration (VLSI) refers to the process of creating an integrated circuit (IC) by combining mill...