How to display hex value in C

2 Answers

0 votes
#include <stdio.h>

int main(void) {
    int n = 210;
    
    printf("%x", n);
    
    return 0;
}




/*
run:

d2

*/

 



answered Dec 29, 2021 by avibootz
0 votes
#include <stdio.h>

int main(void) {
    int n = 5998;
    
    printf("%X", n);
    
    return 0;
}




/*
run:

176E

*/

 



answered Dec 29, 2021 by avibootz

Related questions

2 answers 400 views
400 views asked Dec 29, 2021 by avibootz
1 answer 161 views
161 views asked Dec 29, 2021 by avibootz
1 answer 146 views
1 answer 150 views
1 answer 204 views
1 answer 101 views
...