#includeiostreamGuess the output of the code : -using namespace std;int a = 45;double b= 6;double money(int x,double y);double item(int *p);int main(){int *q;coutmoney(a,b)endl;coutitem(q)endl;return 0;}double money(int x,double y){double c = x/y;return c;}double item(int *p){int c;c = a%6;p = &c;return *p;}
class box{int width;int height;int length;}class main{public static void main(String args[]){box obj = new box();obj.width = 10;obj.height = 2;obj.length = 10;int y = obj.width * obj.height * obj.length;System.out.print(y);}}
#includestdio.hvoid f(int*p,int*q){p=q;*P=2;}int i =0, j=1;int main(){f(&i,&j);printf("%d%d\n",i,j);return 0;}