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;Â }
1 Answer
0
how
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;Â }