-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunction1.cpp
67 lines (50 loc) · 1.18 KB
/
function1.cpp
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
#include <iostream>
using namespace std;
//function declaration
void party (string);
//function definition
void party(string n){
cout<<"hey "<<n<<", welcome to our party\n";
cout<<"yeyy.. its fun\n";
}
int main(){
string x="adi";
party(x);
return 0;
}
// #include <iostream>
// using namespace std;
// //function declaration
// void multiply5(int&);
// //function definition
// void multiply5(int& a){
// a=a*5;
// }
// int main(){
// int x=10;
// //function calling
// multiply5(x);
// cout<<x<<"\n";
// return 0;
// }
//all lower}else if(){ letters to upper }else if(){
// #include <iostream>
// using namespace std;
// //function definition
// string stringConvert(string s){
// string res=s;
// for(int i=0; i<s.length(); i++){
// if(s[i]-'A'>=0 && s[i]-'A'<= 25){ //big to small
// res[i]=res[i]-'A'+'a';
// }else if(s[i]-'a'>=0 && s[i]-'a'<= 25){ //small to big
// res[i]=res[i]-'a'+'A';
// }
// }
// return res;
// }
// int main(){
// string s="adithya&*&DSNFKJHDKSFKDSFKD";
// string res1=stringConvert(s);
// cout<<res1<<"\n";
// return 0;
// }