Author Topic: code blacks giving black screen after compiling  (Read 2361 times)

HELPMERHONDA

  • Guest
code blacks giving black screen after compiling
« on: May 27, 2020, 03:03:23 am »

Why is the code below giving a black screen after compiling???

#include <iostream>
using namespace std;

void testcode(){
cout << "test" << endl;
}

int main (){

void testcode();

return 0;
}