Q. For which type, the format specifier "%i" is used?
β
Correct Answer: (A)
int
Explanation: In C programming language, both of the format specifier %d and %i are used for int type, where %d specifies the type of variable as decimal and %i specifies the type as integer.