#include<iostream>
using name space std;
int a;
void f (int x, int y){
a=5;
*y=x-a;
x+=10;
}
int main() {
int a=5 ,*p ;
p=&a;
f(a,p);
cout<<a;
return 0;
}
'');">
تحميل الصورة
الأجوبة
output : 0
success
تم تقديم إجابتك بنجاح
success
تم تعديل الإجابة، سيتم نشرها بعد مراجعة الإدارة