MCPcopy Create free account
hub / github.com/ShiqiYu/CPP / main

Function main

week07/examples/recursion.cpp:6–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4void div2(double val);
5
6int main()
7{
8 div2(1024.); // call the recursive function
9 return 0;
10}
11
12void div2(double val)
13{

Callers

nothing calls this directly

Calls 1

div2Function · 0.70

Tested by

no test coverage detected