错误 C4996 'getch': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getch. See online help for details. ConsoleApplication5 D:\ConsoleApplication5\ConsoleApplication5\ConsoleApplication5.cpp 11
#include<graphics.h>
#include<conio.h>
void main()
{
initgraph(293, 220);
IMAGE img_bk;
loadimage(&img_bk, _T("D:\\background.jpg"));
putimage(0, 0, &img_bk);
getch();
closegraph();