Answers for "zero fill in c++"

C++
0

zero fill in c++

#include <iomanip>
#include <iostream>

int main()
{
    std::cout << std::setfill('0') << std::setw(5) << 25;
}
Posted by: Guest on October-09-2021

Browse Popular Code Answers by Language