You are here

Page not found

Search results

  1. C Game Programming Tutorial

    ... can also download executable files so you can understand a program better. Similarly if your game gets input from keyboard you need to ... So what are you waiting for just implement your idea into a program. ...

    Yogesh Suneja - 28/07/2019 - 20:54

  2. 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

  3. 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

  4. 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

  5. clrscr in C

    ... = window.adsbygoogle || []).push({}); In the program, we display the message (Press any key to clear the screen) using ...

    Yogesh Suneja - 05/12/2019 - 23:07

  6. pow function in C

    ... ;   return 0 ; } Output of program: ...

    Yogesh Suneja - 27/11/2019 - 18:54

  7. 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

  8. 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

  9. gotoxy in C

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

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

  10. 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

Pages