-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3_types_functions.c
84 lines (55 loc) · 1.15 KB
/
3_types_functions.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<string.h>
//function
int a();
int main(){
int b;
b = a();
printf("Adding two numbers by using function : %d \n", b);
return 0;
}
int a(){
int a1 = 10, b1 = 20;
return a1 + b1;
}
#include<stdio.h>
//function declaration
int addition(int num1, int num2);
int main()
{
//local variable definition
int answer;
int num1 = 10;
int num2 = 5;
//calling a function to get addition value
answer = addition(num1,num2);
printf("The addition of two numbers is: %d\n",answer);
return 0;
}
//function returning the addition of two numbers
int addition(int a,int b)
{
return a + b;
}
// new function type same
#include<stdio.h>
//function declaration
int addition(int *num1, int *num2);
int main()
{
//local variable definition
int answer;
int num1 = 10;
int num2 = 5;
//calling a function to get addition value
answer = addition(&num1,&num2);
printf("The addition of two numbers is: %d\n",answer);
return 0;
}
//function returning the addition of two numbers
int addition(int *a,int *b)
{
return *a + *b;
}