What happens when you attempt to compile and run the following code?
#include
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<return 0;}
return 0;
It prints: 0
It prints: 4.9
It prints: 5
It prints: 4
Submit