What will be passed here?

Hello everyone!

I want to create an arc in c++ by using windows.h but I Don't know that what will be passed to the first argument which I have mentioned in Comment Below:
1
2
3
4
5
6
7
8
9
10
#include<iostream>
#include<conio.h>
#include<windows.h>
using namespace std;
int main()
{
	Arc(/*what will be passed here?*/,23,12,42,14,24,54,32,12);
	getch();
    
}
A handle to a device context. Basically, information about the window that you want to draw on.

You need to create that window.
Topic archived. No new replies allowed.