# include
int main ( void) {
int x , y;
COLORREF gelb = RGB ( 255,255,0 ); .
COLORREF hellblau = RGB ( 173216230 ) "
3
den Code hinzufügen , " SetConsoleTitle ( " ConGraphics ");
HWND hWnd = FindWindow (NULL, " ConGraphics ");
HDC hDC = GetDC (hWnd );
//zeichnen ein gelbes Sinuskurve
für ( x = 0; x <700 ; x + +) {
//center bei y = 200 Pixel
y = (int) ( sin ( x/100.0 ) * 100 + 200); .
SetPixel (HDC, x , y , Gelb) "
4
Ausführung durch Eingabe von " //zeichnen Mittellinie
for (x = 0 , x <700 ; x + +) {
SetPixel (HDC, x , 200, hellblau ); }
ReleaseDC ( hWnd, hDC );
DeleteDC ( hDC );
getchar (); . //warten
return 0 "