Page not found
Search results
C program to display mouse pointer in graphics mode
This program displays mouse pointer in graphics mode. First graphics mode is initialized and then mouse using initmouse. C program #include<graphics.h> #include<conio.h> ... , gm ; initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ; status = initmouse ( ) ; ...
devyog - 23/11/2019 - 11:40
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
C program to compare large numbers (integers)
... positive, zero or negative, we will take care of it in our program. Algorithm of comparing: If both numbers are positive: If the ... 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
C++ class example program
C++ class program example: In our program, we create a class named programming with one ... create an object of this class and call these functions. C++ programming code #include<iostream> using namespace ...
devyog - 08/01/2018 - 20:44
C program to print date
C program to print current system date. To print date, we will use getdate function. C programming code (Works in Turbo C only) #include <stdio.h> ...
devyog - 13/03/2018 - 12:40
Remove vowels from a string in C
C program to remove or delete vowels from a string. If the input is "C programming," then the output is "C prgrmmng." In the program, we create ...
devyog - 11/10/2020 - 23:29
getch in C
Function getch in C program prompts a user to press a character. It doesn't show up on the screen. ... header file. The function is not a part of standard C library. C programming code for getch #include <stdio.h> ...
devyog - 14/12/2019 - 21:35
Selection sort in C
Selection sort in C to sort numbers of an array in ascending order. With a little modification, ... || []).push({}); Selection sort program in C #include <stdio.h> int main ( ) { int ...
devyog - 25/10/2020 - 14:26
Bitwise operators in C
Bitwise operators in C programming language: In this tutorial I am going to discuss bitwise operators with example C programs. As you know data is stored in memory in the form of bits and a bit ... (1). We will perform operations on individual bits. C program #include <stdio.h> main ( ) { int ...
devyog - 23/11/2019 - 11:40
C++ inline function program
... writing the keyword inline before defining the function. C++ programming code #include <iostream> using namespace ... ) ; int main ( ) { char c ; cout << "Enter a character \n " ; ...
devyog - 20/03/2018 - 11:16