Horje
online c++ graphics compiler Code Example
online c++ graphics compiler
#include<graphics.h>
#include<stdio.h>
#include <conio.h>
void main()
{
    int gd = DETECT, gm;
    initgraph(&gd,&gm, "C:\\tc\\bgi");
    circle(300,300,50);
    closegraph();
    getch();
}
online c++ graphics compiler
#include<graphics.h>
#include <conio.h>
int main()
{
    int gd = DETECT, gm;
    initgraph(&gd,&gm, "C:\\tc\\bgi");
    circle(300,300,50);
    closegraph();
    getch();
}
online c++ graphics compiler
#include <stdio.h>
#include <conio.h>
#include <graphics.h>
int main()
{
int i,j,x1,x2,y1,y2;
printf("x1,x2,y1,y2:");
scanf("%d,%d,%d,%d",&x1,&x2,&y1,&y2);
if((scanf("%d,%d,%d,%d",&x1,&x2,&y1,&y2)!=4)||(x1<1)||(x2>80)||(y1<1)||(y2>80)||(x1>x2)||(y1>y2))
    {printf("Error!");
    return 1;}
rectangle(x1,x2,y1,y2);
return 0;
}
online c++ graphics compiler
#include<graphics.h>
#include <conio.h>
int main()
{
    int gd = DETECT, gm;
    initgraph(&gd,&gm, "C:\\tc\\bgi");
    circle(300,300,50);
    closegraph();
    getch();
}
online c++ compiler
template < class T, class Alloc = allocator<T> > class vector; // generic template




Cpp

Related
user inptu in cpp Code Example user inptu in cpp Code Example
print set c++ Code Example print set c++ Code Example
qtextedit no line break Code Example qtextedit no line break Code Example
PUBG_APIKEY=<your-api-key> npm t Code Example PUBG_APIKEY=<your-api-key> npm t Code Example
thread group c++ Code Example thread group c++ Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10