why we use function in c++ code example
Example 1: how to declare a function in c++
#include <iostream>
using namespace std;
int addition (int a, int b)
{
int r;
r=a+b;
return r;
}
Example 2: How to make a function in C++
void yourFunction() {
cout << "Functions"
}
int main() {
myFunction();
return 0;
}
Example 3: functions in C++
void Hello() {
std::cout << "Hello";
}
int main () {
Hello();
}
Example 4: function in c++
#include <iostream>
using namespace std;
void myFunction() {
cout << "I just got executed!";
}
int main() {
myFunction();
return 0;
}