41.
What will be the output of the following C++ code?
#include <iostream>
#include <bitset>
using namespace std;
int main()
{
	bitset<8> b1(15);
	cout<<b1;
}

43.
What will be the output of the following C++ code?
#include <iostream>
#include <array>
 
using namespace std;
 
int main(int argc, char const *argv[])
{
	array<int,5> arr1;
	arr1.fill(5);
	cout<<get<5>(arr1);
	return 0;
}

44.
What is subtract_with_carry_engine?

45.
What is the difference between normal function and template function?