Question: What is the output of the following program? #include void Fun(int, int, int); int main(){ int a=5, b=3, c= 4; Fun(++a, b--, c*2); void
What is the output of the following program? #include void Fun(int, int, int); int main(){ int a=5, b=3, c= 4; Fun(++a, b--, c*2); void Fun(int X, int Y, int Z){ printf("%d %d %d ", X, Y, --Z);
Step by Step Solution
There are 3 Steps involved in it
Explanation a5 b3 c4 Funabc2 frst argument is a it means first increment the a value by one and ... View full answer
Get step-by-step solutions from verified subject matter experts
