51.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int n = 15;
    for ( ; ;)
    cout << n;
    return 0;
}

52.
Which of the following is correct about Functors?

54.
What will be the output of the following C++ code?
#include<iostream>
#include<any>
using namespace std;
int main()
{
	float val = 5.5;
	any var(val);
	cout<<var.type().name()<<endl;
	return 0;
}

56.
What will be the output of the following C++ code?
#include <iostream>
#include <string>
using namespace std;
int main ()
{
    string mys;
    char mya[20]= "Hello world";
    mys = mya;
    cout << mys << '\n';
    return 0;
}

58.
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
    int i;
    for (i = 0; i < 10; i++);
    {
        cout << i;
    }
    return 0;
}