Home » C++ Programming » Functions

What will be the output of the following program? #include<iostream.h> int CuriousTabFunction(int a, int b = 3, int c = 3) { cout<< ++a * ++b * --c ; return 0; } int main() { CuriousTabFunction(5, 0, 0); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!