DEVCPP Graphics

{
cout<<"Hi,everybody.\n";
1)How can I fill circle?
2)How can I resize circle's line size, ex: I want to make circle's line bold?

cout<<"Thanx in advance.\n";
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <iostream>

std::string SDL();
std::string SFML();

int main( int argc, char* argv[] )
{
    std::cout << "You will need a graphics library." << std::endl;
    std::cout << "Have a look at " << SDL()
              << " or at " << SFML() << "." << std::endl;

    std::cin.get();

    return 0;
}

std::string SDL()
{
    return ( "http://www.libsdl.org/" );
}

std::string SFML()
{
    return ( "http://www.sfml-dev.org/" );
}
Last edited on
//lol like the answer you gave him, just came here to say that
Topic archived. No new replies allowed.