Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

1 #include <stdio.

h>
2
3 void doFirst(int c, int d){
4 if(c*d>10){
5 printf("It is a multiplication %d",c);
6 }else{
7 printf("It is a multiplication %d",d);
8 }
9 }
10
11 void doSecond(int h, int k){
12 int addition = h + k;
13 printf("It is an addition %d",addition);
14 }
15
16
17 void main(){
18 int a=1;
19
20 if(a==1){
21 doFirst(5,30);
22 }else{
23 doSecond(6,40);
24 }
25
26 }
27

You might also like