some cpp code
Python
code posted
created at 19 Nov 10:46, updated at 04 Dec 11:00
Edit
|
Back
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
// function example #include <iostream> using namespace std; int addition (int a, int b) { int r; r=a+b; return (r); } int main () { int z; z = addition (5,3); cout << "The result is " << z; return 0; } |
235 Bytes in 2 ms with coderay