What is the effect of `typedef int myInt;`?
Question 1
Q1. What is the effect of `typedef int myInt;`?
Answer: Creates an alias for int
Explanation: Typedef creates an alias for an existing type. NET computer science MCQs often test this core concept.