Open In App

C++ | Templates | Question 8

Like Article
Like
Save
Share
Report

Output?




#include <iostream>
using namespace std;
  
template <int i>
void fun()
{
   i = 20;
   cout << i;
}
  
int main()
{
   fun<10>();
   return 0;
}


(A) 10
(B) 20
(C) Compiler Error


Answer: (C)

Explanation: Compiler error in line “i = 20;”

Non-type parameters must be const, so they cannot be modified.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads