How to display hex value in C++

2 Answers

0 votes
#include <iostream>

int main(void) {
    int n = 210;
    
    std::cout << std::hex << n;
    
    return 0;
}




/*
run:

d2

*/

 



answered Dec 29, 2021 by avibootz
0 votes
#include <iostream>

int main(void) {
    int n = 5998;
    
    std::cout << std::uppercase << std::hex << n;
    
    return 0;
}




/*
run:

176E

*/

 



answered Dec 29, 2021 by avibootz

Related questions

1 answer 145 views
1 answer 149 views
1 answer 203 views
2 answers 170 views
170 views asked Dec 29, 2021 by avibootz
1 answer 160 views
160 views asked Dec 29, 2021 by avibootz
1 answer 86 views
...