You are here

Page not found

Search results

  1. colors in C graphics

    Following colors are available for use in C graphics programming. Colors table Color Value ... name as it will improve readability of program. C programming: graphics.h ...

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

  2. Captcha program in C

    C program to generate a captcha which is a random string generated using an ... to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> ... ] ;   initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;   x = getmaxx ( ) / 2 ; ...

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

  3. Press me button game in c, download press-me-button game

    Press me game in C:- In this game when you try to bring mouse near a button it moves away from ... very close to button we move the button suitably. C program #include <stdio.h> #include <conio.h> #include ... , error ;   initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;   error = graphresult ( ) ; ...

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

  4. C program draw bar chart

    C program to draw a bar chart using graphics. The chart is drawn using bars filled with different styles and colors. 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

  5. C program to draw pie chart

    This C program draws a pie chart showing percentage of various components drawn with different filling styles and colors. C program /* Program to draw a pie chart */ #include<graphics.h> ... ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    setcolor ( MAGENTA ) ;   ...

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

  6. C countdown program

    C graphics program which performs countdown for 30 seconds. C program #include <graphics.h> #include <dos.h> #include ... ;      initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;      settextjustify ( CENTER_TEXT , ...

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

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

  8. traffic light program in c, traffic light simulation

    Traffic light Simulation: Traffic light program in C presents what happens in our daily life at traffic light signals. Firstly ... will press a key to start the traffic light simulation. C program #include<graphics.h> #include<conio.h> ...

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

  9. C program to move a car

    Program in C using graphics to move a car. A car is made using two rectangles and two ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , ...

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

  10. C smiling face animation

    This animation using C draws a smiling face which appears at random positions on the screen. C program #include<graphics.h> #include<conio.h> ... p ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    setcolor ( YELLOW ) ;   ...

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

Pages