Answers for "what is %u in C"

0

why %u is used for ?

%d is used to specify an integer, %u is used to specify an unsigned integer .
Posted by: Guest on April-30-2020
-1

what is %u in C

The %u format specifier is implemented for fetching values from the address of a variable having unsigned decimal integer stored in the memory. This is used within printf() function for printing the unsigned integer variable.
Posted by: Guest on March-18-2021

Browse Popular Code Answers by Language