#include using namespace std; void printSomething(); // Prototype the function. int main() { printSomething(); // Call the function. return 0; } void printSomething(){ // Define the function. cout << "oooo i am text ont he screen" << endl; }