In C language, %x is used to print.

Correct answer: A. Unsigned hexadecimal integers

  • A. Unsigned hexadecimal integers
  • B. Unsigned hexadecimal integers short
  • C. Unsigned hexadecimal long integers
  • D. Signed hexadecimal integer

Explanation

The format specifier %x is used to print unsigned hexadecimal integers in C programming. Hexadecimal integers are represented using the digits 0-9 and the letters A-F (or a-f) to represent values 10 to 15. Unsigned integers can only hold non-negative values (0 and positive numbers).

Last updated

Related questions