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
Math,
2 months ago
Social Sciences,
2 months ago
Science,
2 months ago
Social Sciences,
4 months ago
Science,
4 months ago
Science,
11 months ago
Chemistry,
11 months ago