Which can be passed as an argument to a function?

Loading

Practice Functions –

Which can be passed as an argument to a function?

What will be the output of the following program?

Loading

Practice Templates –

What will be the output of the following program?

#include<iostream.h>
void main()
{
float x=5,y=2;
int result;
result=x % y;
cout<<result;
}

 

Which of the following statement is valid?

Loading

Practice Templates –

Which of the following statement is valid?