closed by
197 views

Related questions

0 votes
0 votes
1 answer
1
srestha asked Jun 14, 2018
313 views
#include <stdio.h int make_it(int *x,int *y, int *z){ *x *= *y+*z; *y=*x<<1; *z=*x+*y; } int main(void) { int a=5, b=10; printf("%d%d",a,b); make_it(&b,&a,&(a+b)); printf...