We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba65da commit 42310c5Copy full SHA for 42310c5
python-bindings/overview_article/cmult.c
@@ -4,7 +4,7 @@
4
5
float cmult(int int_param, float float_param) {
6
float return_value = int_param * float_param;
7
- printf(" In cmult : int: %d float %.1f returning %.1f\n", int_param,
+ printf(" In cmult : int %d float %.1f returning %.1f\n", int_param,
8
float_param, return_value);
9
return return_value;
10
}
python-bindings/overview_article/cppmult.cpp
@@ -6,7 +6,7 @@
float cppmult(int int_param, float float_param) {
std::cout << std::setprecision(1) << std::fixed
- << " In cppmul: int: " << int_param
+ << " In cppmul: int " << int_param
<< " float " << float_param
11
<< " returning " << return_value
12
<< std::endl;
0 commit comments