C++ COURSE
C++ Functions
Learn C++ programming with EDUHUB Code Hub.
C++ Functions
A function is a block of code that performs a task.
void hello(){
cout << "Hello EDUHUB";
}
int main(){
hello();
}