You are here

Page not found

Search results

  1. kbhit in C

    Function kbhit in C is used to determine if a key has been pressed or not. To use it in a program ... otherwise it returns zero. Declaration: int kbhit(); C programming code for kbhit #include <stdio.h> #include <conio.h> int ...

    Yogesh Suneja - 22/11/2019 - 20:31

  2. lineto function in C

    ... can get current position using getx and gety function. C programming code for lineto #include <graphics.h> #include <conio.h> ...

    Yogesh Suneja - 22/11/2019 - 20:16

  3. sleep in C

    ... seconds. Declaration: void sleep(unsigned seconds); C programming code for sleep #include <stdio.h> #include <dos.h> int ...

    Yogesh Suneja - 22/11/2019 - 20:22

  4. Function nosound in C

    ... off the PC speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ) { ...

    Yogesh Suneja - 22/11/2019 - 20:21

  5. putpixel function in c

    ... (35, 45) then we will write putpixel(35, 35, GREEN); in our c program, putpixel function can be used to draw circles, lines and ellipses using various algorithms. C programming code for putpixel #include<graphics.h> #include<conio.h> ...

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

  6. grapherrormsg function in C

    ... Declaration: char *grapherrormsg( int errorcode ); C programming code for grapherrormsg #include <graphics.h> #include <stdlib.h> ...

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

  7. textbackground in C

    ... . Declaration: void textbackground(int color); C programming code for textbackground #include<stdio.h> #include<conio.h> ...

    Yogesh Suneja - 03/02/2018 - 16:06

  8. Function moverel in C

    ... distance. Declaration: void moverel(int x, int y); C programming code for moverel #include <graphics.h> #include <conio.h> ...

    Yogesh Suneja - 24/01/2018 - 17:57

  9. Setbkcolor function in c

    ... drawing color is WHITE and background color is BLACK. C programming code for setbkcolor #include<graphics.h> #include<conio.h> ...

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

  10. outtextxy function in c

    ... argument contains the address of string to be displayed. C programming code for outtextxy #include<graphics.h> #include<conio.h> ...

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

Pages