Advertisements
Advertisements
Question
Fill in the blanks to design a class:
class ..................
{
int l, b
Area( int ........, int .........)
l = ..............;
b = ..............;
}
Code Writing
Fill in the Blanks
Solution
class Area
{
int l, b
Area( int x, int y)
l = x;
b = y;
}
shaalaa.com
Is there an error in this question or solution?