I need help in my home work urgent.
Write a program in C++ which asks user to enter two binary numbers. Store these two numbers in two different stack variables (objects) bit by bit and calculate its sum and store it in another stack variable and display its sum.
Solution Guidelines:
1. Create a class named Bin_add (means stack class) that should contain following inline functions:
• Constructor( ): To initialize “Bin_add” class data members.
• Isempty( ): To check whether a stack is empty or not.
• Push( ) To push binary number bit by bit onto the stack
• Pop( ) To pop bit (either 0 or 1) from the top of the stack
• Add( ) To add two binary numbers bit by bit and display the sum.
2. In main function:
(a). Create three objects b1, b2, b_sum of type Bin_add class, two for input and one for storing the sum.
(b). Read two binary numbers from user bit by bit and push (insert) them in b1 and b2.
(c). Call the Add() function with b_sum object to add and display the sum of both binary numbers.