-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFunction_and.c
107 lines (68 loc) · 1.99 KB
/
Function_and.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include<stdio.h>
#include<math.h>
// void printhello(); //function_declearation..
// void p_goodbye(); //...........just simple another func declearation..
// void salam(); //.............another function declearation.
// void another_r(); //''''
////////////////////////////////////
int sum(int a, int b);
void table_from_user(int user);
float squareArea(float side);
float circleArea(float redious);
float rectangleArea(float a,float b);
int main(){
float a = 5.0;
printf("area is:%f", circleArea(4.3));
// int n = 8;
// printf("%f",pow(n,2));
// // int b;
// printf("Enter your first number:");
// scanf("%d",&b);
// // printf("Enter your second number:");
// // scanf("%d",&c);
// table_from_user(b);//.......... //argument/actuall parameter
// int su = sum(b,c);
// printf("Your expected result is: %d",su);
// printf("Select your religion: B for Bangladesh & anythings for other non muslim country.");
// char user;
// scanf("%c",&user);
// if(user=='B'){
// salam();
// }
// else{
// another_r();
// }
// salam();
return 0;
}
float squareArea(float side){
return side*side;
}
float circleArea(float redious){
return 3.1416*redious*redious;
}
float rectangleArea(float a, float b){
return a*b;
}
// void table_from_user(int user){//.....// formal parameter.
// for(int i=1;i<=10; i++){
// printf("%d\n",i*user);
// }
// }
// int sum(int a, int b){
// return a+b;
// }
// void printhello(){ //function_defination
// printf("Hi gyse\n");
// printf("I hope your all done\n");
// }
// void p_goodbye(){
// printf("Okey good bye!\n");
// }
// void salam(){
// printf("Asslamu alaikum\n");
// another_r();
// }
// void another_r(){
// printf("You have to follow the Islam\n");
// }