You are here

Page not found

Search results

  1. C program to display mouse pointer in graphics mode

    ... mode is initialized and then mouse using initmouse. C program #include<graphics.h> #include<conio.h> ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    status = initmouse ( ) ; ...

    Yogesh Suneja - 23/11/2019 - 11:40

  2. getbkcolor function in C

    ... If current background color is GREEN, color will be 2. C program for getbkcolor #include <graphics.h> #include ... ] ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;        bkcolor = getbkcolor ( ...

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

  3. C program to find the largest of three numbers

    C program to find the largest of three numbers: User will input three integers ... of operator and '&&' is the logical AND operator. C program to determine largest of three numbers #include <stdio.h> ...

    Yogesh Suneja - 30/10/2019 - 22:45

  4. Print numbers without using loops

    C program to print first n natural numbers without using any loop (do-while, ... i.e., without creating any function other than main. C program using recursion #include <stdio.h> void print ( ... without loop program. Output of program: C program using goto #include <stdio.h> int main ( ) ...

    Yogesh Suneja - 09/10/2020 - 22:48

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

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

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

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

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

  9. cos in C - math.h

    ... Declaration: double cos(double); C program #include <stdio.h> #include <math.h> int ...

    Yogesh Suneja - 23/11/2019 - 11:40

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

    Yogesh Suneja - 23/11/2019 - 11:40

Pages