Page not found
Search results
C program to compare large numbers (integers)
... number which is smaller in magnitude is the larger one. C program to compare numbers using string #include <stdio.h> ...
devyog - 16/11/2019 - 09:19
setdate c
setdate function is used to change system date. C programming code for setdate #include<stdio.h> ... ) ; return 0 ; } C programming: dos.h ...
devyog - 03/01/2018 - 19:33
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 ( ) ...
devyog - 09/10/2020 - 22:48
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 ( ...
devyog - 09/06/2018 - 20:50
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 ...
devyog - 08/01/2018 - 20:55
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 , ...
devyog - 08/01/2018 - 20:55
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 , ...
devyog - 11/01/2018 - 23:19
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: ...
devyog - 31/10/2019 - 19:34
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 ...
devyog - 28/12/2017 - 21:34
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 ...
devyog - 10/12/2017 - 06:21