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 <cstdlib>
#include <iostream>

using namespace std;

inline float sum(float a,float b)
{
return a+b;
}

int main()
{
float a,b;
a = 1.5; b = 3.4;
cout<<sum(a,b);
return 0;
}

  • It prints: 0
  • It prints: 4.9
  • It prints: 5
  • It prints: 4
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments