0

It's in C language please explain the output of the below code.

long fu(int);  char vect[]={1,2,3,4,5};  void main(){  int i=1;  i=fu(++i)+ ++vect[++i]+ ++i+fu(i++);  printf("%d",i);  }  long fu(int x){  return x*3;  }

25th Dec 2016, 8:02 AM
Arpitha G R
Arpitha G R - avatar
1 Answer
0
how
26th Dec 2016, 11:24 AM
Arpitha G R
Arpitha G R - avatar