Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ countDigits
Function
countDigits
CPP/Maths/CountDigit.cpp:4–7 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
2
using namespace std;
3
4
int countDigits(int n)
5
{
6
return (log10(n) + 1);
7
}
8
9
int main()
10
{
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected