You are here

Page not found

Search results

  1. getx and gety functions in C

    ... the Y coordinate of the current position. Example program of getx and gety functions: #include <graphics.h> ...

    Yogesh Suneja - 22/11/2019 - 19:49

  2. Buy programming books

    ... working internet connection. We highly recommend learning to program from them for everyone. There are good books available, whatever your ...

    Yogesh Suneja - 20/11/2019 - 19:48

  3. Privacy Policy

    ... Initiative opt-out page .) We use Amazon affiliate program to serve links and banners on our websites. ...

    Yogesh Suneja - 01/12/2019 - 08:56

  4. What is main ?

    main is a function through which program execution begins. Every C program must have a main function. Operating system calls main to begin ...

    Yogesh Suneja - 05/07/2018 - 14:12

  5. grapherrormsg function in C

    ... ;     return 0 ; } In the above program we have not written gd = DETECT. After running this program we get the output :- Graphics error: Graphics hardware not detected ...

    Yogesh Suneja - 09/06/2018 - 20:50

  6. putpixel function in c

    ... 45) then we will write putpixel(35, 35, GREEN); in our c program, putpixel function can be used to draw circles, lines and ellipses ...     return 0 ; } Output of this program will be a RED pixel on screen at (25, 25) . Try to spot that pixel with ...

    Yogesh Suneja - 08/01/2018 - 20:55

  7. gotoxy in C

    ...  gotoxy ( x , y ) ;     printf ( "C program to change cursor position." ) ;     getch ( ) ; ...

    Yogesh Suneja - 10/10/2018 - 17:33

  8. Arc function in C

    ... ) ;     return 0 ; } In the program (100, 100) are coordinates of center of arc, 0 is the starting angle, ...

    Yogesh Suneja - 03/10/2018 - 18:04

  9. for loop in C

    ... how to use for loop and it's variations with different program examples. for (initialization; condition checking; increment or ...

    Yogesh Suneja - 09/06/2018 - 20:56

  10. graphdefaults function in c

    ... ;     return 0 ; } In the above program we have first changed the drawing color to RED and background color to ...

    Yogesh Suneja - 09/06/2018 - 20:50

Pages