C++ Programming MCQ Test 2 : Question 3

What will be the output of the following C++ code snippet ?
#include <iostream>
using namespace std;

int main() {
    char a = 66;
    cout << a;
    return 0;
}
     



sec