C/C++
,

.

#include <stdio.h>
#include <graphics.h>
#include <stdlib.h>
#include <conio.h>
void main()
{
	int driver = DETECT, gmode, errorcode;
	initgraph(&driver, &gmode, "");		//  
	errorcode = graphresult();		//  
	if (errorcode != grOk){			// 
		printf("Error:%s\n", grapherrormsg(errorcode));
		printf("Prss any key");
		getch();
		exit(1);
	}
	getch();
	closegraph();				//  
}






Нет комментариев.



Оставить комментарий:
Ваше Имя:
Email:
Антибот: *  
Ваш комментарий: