MCPcopy Create free account
hub / github.com/Apress/beginning-cpp20 / double_it

Function double_it

Examples/Modules/Chapter 08/Ex8_10.cpp:4–4  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2import <iostream>;
3
4void double_it(double& it) { it *= 2; }
5void print_it(const double& it) { std::cout << it << std::endl; }
6
7int main()

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected