Multiple choice Which of the following is/are false about typedef keyword in C++? It is used to create an alias for a known data type. typedef keyword can be used with unsigned char data type. typedef keyword cannot be used to define an alias for a function. Both (2) and (3) None of these Reveal answer Fill a bubble to check yourself C Correct answer Explanation This is not true as we can also use typedef keyword to define an alias for a function in C++ and it can be used as function pointer.