Page not found
Search results
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 ...
devyog - 23/11/2019 - 11:40
ceil in C - math.h
... passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int ...
devyog - 23/11/2019 - 11:40
cos in C - math.h
... Declaration: double cos(double); C program #include <stdio.h> #include <math.h> int ...
devyog - 23/11/2019 - 11:40
sin function in C
... angle(in radian). Declaration: double sin(double); C program #include <stdio.h> #include <math.h> int ...
devyog - 22/11/2019 - 20:46
sleep in C
... seconds. Declaration: void sleep(unsigned seconds); C programming code for sleep #include <stdio.h> #include <dos.h> ... ) ; return 0 ; } C programming: dos.h ...
devyog - 22/11/2019 - 20:22
Function nosound in C
... off the PC speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ... ; return 0 ; } C programming: dos.h ...
devyog - 22/11/2019 - 20:21
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
bar3d function in c
... To change fill pattern and fill color use setfillstyle. C program of bar3d #include<graphics.h> #include<conio.h> ... gm ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; bar3d ( 100 , 100 , ...
devyog - 01/12/2019 - 08:56