so I am teachuing myself c++ and I came accross conio.h
and I usually had a problem with cin.get(), and sometimes I had to duplicate it to keep the cosole open...
code:
// ConsoleApplication2.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <conio.h>
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Hi" ;
_getch();
return 0;
}
what is the significance behind the "_" part of "_getch()"?