Object Oriented Programming

1:

The following program
void abc (int &p)
{
cout  << p ;
}
void main (void)
{
float m = 1.23;
abc (m) ;
cout << m;
}        

A.

results in compilation error

B.

results in run time error

C.

prints 1. 23

D.

prints I

 

Answer : A

Explanation :

Write your comments here:


Report Error
 

Option: A

Explanation : Explanation will come here. Explanation will come here. Explanation will come here. Explanation will come here. Explanation will come here.