Visual C++ でグラフィックスを使用するのは初めてです。色で塗りつぶされた長方形を作ろうとしています。これを修正するには助けが必要です...
RECT rect;
HDC hdc;
hdc=CreateDC(TEXT("DISPLAY"),NULL,NULL,NULL);
rect.left=30;
rect.right=100;
rect.top=50;
rect.bottom=200;
FillRect(hdc,&rect,(HBRUSH)(RGB(40,151,151)));
エラーは次のとおりです。
ERROR: The variable 'rect' is being used without being initialized.