Write the code to call a function named send_variable and that expects a single int parameter.

Write the code to call a function named send_variable and that expects a single int parameter.



Suppose a variable called x refers to an int. Pass this variable as an argument to send_variable .

send_variable(x);


Learn More :