You are here

Page not found

Search results

  1. fillellipse function in C

    ... and yradius are x and y radius of ellipse respectively. C program for fillellipse #include <graphics.h> #include ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;                  fillellipse ( ...

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

  2. closegraph function in c

    ... called initgraph. Declaration: void closegraph(); C code of closegraph #include<graphics.h> #include<conio.h> ...        initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;        outtext ( "Press any key to ...

    Yogesh Suneja - 08/01/2018 - 20:55

  3. Circle function in c

    ... of the circle. The code given below draws a circle. C program for circle #include<graphics.h> #include<conio.h> ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    circle ( 100 , 100 , ...

    Yogesh Suneja - 08/01/2018 - 20:55

  4. ellipse and fillellipse functions

    ... and fill it with current drawing color and pattern. C programming code for ellipse #include<graphics.h> main ( ) ... gm ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    ellipse ( 100 , 100 , ...

    Yogesh Suneja - 11/01/2018 - 23:19

  5. C faq

    ... This page contains faq (Frequently asked questions) about C language. Q1) What is C? Ans: C is a programming language. Q2) What is main function? Ans: ...

    Yogesh Suneja - 31/10/2019 - 19:34

  6. Palindrome in Java

    ...

    Yogesh Suneja - 12/10/2020 - 22:21

  7. c graphics

    Graphics using c language involves understanding a library containing functions to draw ... such as OpenGL, SDL and many others but for a beginner Turbo c compiler contains a header file graphics.h . Graphics programming is easy ... illustrations, charts, diagrams and geometric figures. C Graphics Tutorial graphics.h ...

    Yogesh Suneja - 28/12/2017 - 21:34

  8. getdate C

    Program to print current system date, getdate C code below explain how to use this function to print computer date. Getdate example C programming code to print date #include<stdio.h> ... 0 ; } This code will work only in Turbo C compiler. C programming: dos.h ...

    Yogesh Suneja - 10/12/2017 - 06:21

  9. C program to check if an array is sorted or not (ascending or descending or none)

    C program to check if an array is sorted or not, i.e., in ascending order or ...

    Yogesh Suneja - 01/12/2019 - 08:56

  10. getx and gety functions in C

    ... 100 ] ;   initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;   moveto ( 200 + random ( ...

    Yogesh Suneja - 22/11/2019 - 19:49

Pages