You are here

Page not found

Search results

  1. Line function in c

    ... Declaration: void line(int x1, int y1, int x2, int y2); C programming code for line #include <graphics.h> #include ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    line ( 100 , 100 , ...

    devyog - 08/01/2018 - 20:55

  2. gettime c

    gettime in c: gettime function is used to find current system time. We pass address of a structure varibale of type ( struct time ). C programming code for gettime #include<stdio.h> #include<dos.h> ... ;     return 0 ; } C programming: dos.h ...

    devyog - 03/01/2018 - 19:32

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

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

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

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

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

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

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

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

Pages