1.

Give the output of the following: #include<iostream.h>void Execute(int &B,int C=200){int TEMP=B+C;B+=TEMP;if(C==100)cout<<TEMP<<B<<C<<end1;}void main() {int M=90,N=10;Exwcute(M);cout<<M<<N<<end1;Exwcute(M,N);cout<<m<<N<<end1;}

Answer»

Output

38010

77010



Discussion

No Comment Found

Related InterviewSolutions