How many types of models are available to create the user-defined data type?
What is the scope of typedef defined data types?
How many types of user-defined data type are in c++?
What is the syntax of user-defined data types?
What is the output of this program?
1. #include2. using namespace std; 3. int main() 4. { 5. typedef int num; 6. typedef char let; 7. let w = "steve"; 8. num a = 10, b = 15; 9. num c = a + w; 10. cout << c; 11. return 0; 12. }