![]() |
#2
rjsp2017-05-08 16:31
|
what is the output of this code?
int fun(int a,int b){
ruturn(a,b);
}
int main(void){
int x;
x=fun(6,7);
cout<<x;
}