printf: Afficher l’hexadécimal minuscule

Author:


Download

#include <stdio.h>
 
int main( )
{
 int hexa = 19852011;
 
 printf("%xn",hexa); 
 
 return 0;
}