请问一个菜鸟级的问题
											getch()函数为什么不能用在C++里,是因为我的编译器有问题还是因为getch()是C里面的函数?										
					
	
				
											#include<iostream>
#include <cstdlib>
#include <conio.h>    // for getch()
using namespace std;
int main()
{
    char c = getch();
    cout<<c<<endl;
    
    system("pause");
    return 0;
}										
					
	
	
	
			


											
	    

	


										
					
	
										
					
	