Project: Line Printing Function

Write a function called printLine() that outputs "-----" three times. Call it from main().

Project: Line Printing Function

Write a function called printLine() that outputs "-----" three times. Call it from main().

C++
#include <iostream>
using namespace std;
// Define you function here
int main() {
// Your code goes here to call the function
return 0;
}