Consider the following function implementation.
#include <iostream>
void print_me( )
{
std::cout << “Hello Worldn”;
}
Don't use plagiarized sources. Get Your Custom Essay on
Question & Answer: Consider the following function implementation……
GET AN ESSAY WRITTEN FOR YOU FROM AS LOW AS $13/PAGE
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”;
}