What happens when you attempt to compile and run the following code?

Last Updated on December 5, 2021 by Admin 2

What happens when you attempt to compile and run the following code?

#include <iostream>
#include <cstdarg>

using namespace std;

int mult(int f, int s, int t);

int main()
{
cout << mult(1,2,3);
return 0;
}

int mult(int f, int s, int t)
{
int mult_res;
mult_res = f*s*t;
return mult_res;
}

  • It prints: 0
  • It prints: 6
  • It prints: 2
  • It prints: 3
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments