Vidyalelo
C Programming · Q191

C Fundamentals

Programming · C Programming · question 191

Q191

We want to create an alias name for an identifier of the type unsigned long. The alias name is: ul. The correct way to do this using the keyword typedef is . . . . . . . .

A.
typedef unsigned long ul;
Answer
B.
unsigned long typedef ul;
C.
typedef ul unsigned long;
D.
ul typedef unsigned long;

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board