Skip to content
Snippets Groups Projects
Commit 2ed9c5bf authored by k26-chow's avatar k26-chow
Browse files

edited2

parent a9578d0f
No related branches found
No related tags found
No related merge requests found
......@@ -9,9 +9,15 @@ int multiply_two(int arg1, int arg2)
return arg1 * arg2;
}
int subtract_two(int arg1, int arg2)
{
return arg1 - arg2;
}
void main() {
int result1 = sum_of_three(1,2,3);
int result2 = multiply_two(10,20);
int result3 = subtract_two(50, 15);
while (1)
{}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment