Page not found
Search results
getpixel and putpixel functions in C
... at a point(x, y) of the specified color. C programming code for getpixel and putpixel #include<graphics.h> ...
devyog - 22/11/2019 - 20:43
kbhit in C
... zero. Declaration: int kbhit(); C programming code for kbhit #include <stdio.h> #include <conio.h> int ...
devyog - 22/11/2019 - 20:31
sleep in C
... Declaration: void sleep(unsigned seconds); C programming code for sleep #include <stdio.h> #include <dos.h> int ...
devyog - 22/11/2019 - 20:22
Function nosound in C
... speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ) { ...
devyog - 22/11/2019 - 20:21
delline
... moves all the lines below it one line up. C programming code for delline #include<stdio.h> #include<conio.h> int ...
devyog - 22/11/2019 - 20:19
lineto function in C
... position using getx and gety function. C programming code for lineto #include <graphics.h> #include <conio.h> ...
devyog - 22/11/2019 - 20:16
Scope resolution operator in C++
... has a local variable with the same name. C++ programming code #include <iostream> using namespace std ; ...
devyog - 31/10/2019 - 20:55
C++ program to add two arrays
C++ program to add two arrays. C++ programming code #include<iostream> using namespace std ; int ...
devyog - 31/10/2019 - 20:16
C++ program to generate random numbers
... C++ program to print random numbers. C++ programming code #include <iostream> #include <cstdlib> using ...
devyog - 31/10/2019 - 19:57
gotoxy in C
... where we want to place the cursor. C programming code for gotoxy // Works in Turbo C compiler only #include ...
devyog - 10/10/2018 - 17:33