⟩ What is the output of this program? #include <stdio.h> int main() { char a = '12'; printf("%d", a); return 0; } a) Compiler error b) 12 c) 10 d) Empty
c) 10
c) 10
What is the size of wchar_t in C++? a) 2 b) 4 c) 2 or 4 d) based on the number of bits in the system
What constant defined in <climits> header returns the number of bits in a char? a) CHAR_SIZE b) SIZE_CHAR c) BIT_CHAR d) CHAR_BIT
What is virtual base class?
Do you know the use of Vtable?
What is Dynamic Binding?
What is Static Binding?
Do you know the problem with overriding functions?
Can you please explain the difference between Overloading and Overriding?
What is Virtual Table?
What is virtual function?