#include <iostream>
using namespace std;
void myFirstFunction();
int main()
{
myFirstFunction();
return 0;
}
void myFirstFunction()
{
cout<<"We are in a function"<<endl;
}
--------------------------------------------------------------------------
Searches related to functions in c++
functions in c++
C++ Functions
Introduction to Functions
inline functions in c++
user defined functions in c++
arrays in c++
string functions in c++
friend functions in c++
virtual functions in c++
static functions in c++
0 comments:
Post a Comment