Question & Answer: Consider the following function implementation……

Consider the following function implementation.
#include <iostream>

void print_me( )
{
std::cout << “Hello Worldn”;
}

Write a statement to properly call this function. Do not put spaces in your answer.

Expert Answer

 

#include <iostream>
using namespace std;

//Function Declaration

void print_me();
int main()
{
//Calling the function
print_me();
}

//Function Implementation
void print_me()
{
std::cout << “Hello Worldn”;
}

Still stressed from student homework?
Get quality assistance from academic writers!