Example & Tutorial understanding programming in easy ways.

What is the use of the %u in the C language?

%u is use to get the address of any variable.


Example:

int a=10;

printf("%d",a);   // 10

printf("%u",a);   //address of a

Read More →