wlllisses3997 wlllisses3997 31-01-2020 Computers and Technology contestada Analyze the following code segment: #include void xFunction(int * n); int main() { int n=5; xFunction(&n); printf("%d",n); } void xFunction(int* n) { *n= *n +70; *n=90; }