1. Home
  2. /
  3. Blog
  4. /
  5. user defined functions in c++
C++

user defined functions in c++

October 1, 2022 1 min read 2,404
user defined functions in c++

#include <iostream>
using namespace std;

void func(   )
{
cout<<"hello"<<endl;
}

int main()
{
func();

}
Share:
Read next

Related articles