1 void fn(int * x, int y){
y += 5;
3 * x = * x + y;
4 return;
5 }
6 void main() {
7 int a = 15, b = 18;
8 fn(& a, b);
9 printf("%d", a + b);
10 )
Answers
Answered by
0
Output Will be error many syntax error are there in this program
Similar questions