void function

void say_hello(); // Prototype
									// Forward declarations and definitions not necessary!

main() {

std::string my_dog = "Buster";
say_hello(my_dog); // Call

return 0;
}

void say_hello(std::string name) { // Declaration
    cout << "Hello " << name << endl;
}

void function giving no numeric return