Sail E0 Webinar
Question

What is the output of this program?

#include < iostream >

using namespace std;

void fun(int x, int y)

{

x = 20;

y = 10;

}

int main()

{

int x = 10;

fun(x, x);

cout

Options:
A .  10
B .  20
C .  compile time error
D .  none of the mentioned
Answer: Option A


In this program, we called by value so the value will not be changed, So the output is 10



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers