You are here

Page not found

Search results

  1. C program to draw a 3d bar chart

    This C program draws a 3d bar chart. C program #include <graphics.h> #include <conio.h> int ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    setcolor ( YELLOW ) ;   ...

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

  2. Subtract matrices

    C code to subtract matrices of any order. This program finds the difference ... of two matrices and then print the resultant matrix. C program #include <stdio.h>   int main ( ) {     int m , n , c , d , first [ 10 ] [ 10 ] , second [ 10 ] ...

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

  3. C program to draw circles in circles

    C program to draw circles in circles in two different colors. C program #include<graphics.h> #include<conio.h> ... b ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    delay ( 2000 ) ;     ...

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

  4. gotoxy in C

    gotoxy in C: gotoxy function places cursor at a desired location on screen i.e., we can ... y) is the position where we want to place the cursor. C programming code for gotoxy // Works in Turbo C compiler only #include <stdio.h> #include <conio.h> int ...

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

  5. C++ program to reverse a string

    C++ program to reverse a string that a user will input, for example, if the ... enters "hello," then "olleh" will be printed as output. C++ program #include <iostream> #include <cstring> using ...

    Yogesh Suneja - 23/11/2019 - 12:08

  6. C program to determine which mouse button is clicked

    ... Program to determine which mouse button is clicked */ C program #include<graphics.h> #include<conio.h> ... 50 ] ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , 0 ...

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

  7. getmaxx and getmaxy functions in C

    ... Y coordinate for current graphics mode and driver. C program #include<graphics.h> #include<conio.h> ... ] ;        initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    X = getmaxx ( ) ;   ...

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

  8. Bar function in c

    ... change fill pattern and fill color use setfillstyle . C program #include <graphics.h> #include <conio.h> main ( ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    bar ( 100 , 100 , ...

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

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

  10. C program to restrict mouse pointer

    ... rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> #include<graphics.h> ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , 0 ...

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

Pages