You are here

Page not found

Search results

  1. ellipse function in c

    ... and end angle should be 0 and 360 respectively. C programming code for ellipse #include<graphics.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    ellipse ( 100 , 100 , ...

    devyog - 28/12/2017 - 21:34

  2. linerel function in c

    ... use getx and gety to find the current position. C programming code for linerel #include <graphics.h> #include ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    moveto ( 250 , 250 ) ...

    devyog - 28/12/2017 - 21:34

  3. imagesize function in c

    ... int imagesize(int left, int top, int right, int bottom); C programming code for imagesize #include <graphics.h> #include ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    circle ( 200 , 200 , ...

    devyog - 28/12/2017 - 21:34

  4. getche in C

    ... character and that character is printed on the screen. C code for getche #include<stdio.h> #include<conio.h> main ... Then view the user screen ( Alt + F5 ) if using Turbo C compiler. You will find the character printed on the screen if you pressed a ...

    devyog - 24/12/2017 - 18:14

  5. Function wherey in C

    ... vertical cursor position. Declaration: int wherey(); C program for wherey #include <stdio.h> #include <conio.h> ... ) ;     return 0 ; } C programming: conio.h ...

    devyog - 14/12/2019 - 21:30

  6. Function wherex in C

    ... cursor position. Declaration: int wherex(); C program for wherex #include <stdio.h> #include <conio.h> ... ) ;     return 0 ; } C programming: conio.h ...

    devyog - 14/12/2019 - 21:28

  7. abs in C

    ... the absolute value of a number. abs function in C language #include <stdio.h> #include <math.h> int ...

    devyog - 27/11/2019 - 18:45

  8. log function in C

    ... exponential number. Declaration: double log(double); C program to find logarithm of a number #include <stdio.h> ...

    devyog - 27/11/2019 - 18:40

  9. C program to check if mouse support is available or not

    ... /* Program to check if mouse driver is loaded or not */ C program #include <dos.h> #include <conio.h> int ... ( o. x . ax ) ; } C programming: Mouse Programs ...

    devyog - 23/11/2019 - 11:40

  10. ceil in C - math.h

    ... passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int ...

    devyog - 23/11/2019 - 11:40

Pages