Page not found
Search results
C program to restrict mouse pointer in a circle
C program #include<graphics.h> #include<conio.h> ... ; initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ; if ( ! initmouse ( ) ... ) ; return 0 ; } C programming: Mouse Programs ...
devyog - 01/12/2019 - 08:56
C program to swap two strings
C program to swap two strings, i.e., their contents are interchanged. C program #include <stdio.h> #include <string.h> int ... strings program. Output of program: C programming: C programs ...
devyog - 23/11/2019 - 11:40
C program to merge two files
C program to merge two files and store their contents in another file. The ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> int ... files program. Output of program: C programming: C programs ...
devyog - 23/11/2019 - 11:40
C graphics programs
All these programs have been made using C graphics. Program for various type of charts and other interesting things and patterns. C graphics programs Draw shapes Bar chart Pie chart ...
devyog - 19/05/2018 - 17:21
C++ constructor example
C++ constructor example program: Constructor are functions having name as that ... have return type and are used to initialize objects. C++ constructor program example #include <iostream> using ...
devyog - 06/02/2018 - 13:57
switch case in C
switch is a keyword of C language. Example C program explaining use of switch #include<stdio.h> main ( ... return 0 ; } C programming: C programs ...
devyog - 05/01/2018 - 00:48
Subtract matrices
C code to subtract matrices of any order. This program finds the difference ... of two matrices and then print the resultant matrix. C program #include <stdio.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40
getdate C
Program to print current system date, getdate C code below explain how to use this function to print computer date. Getdate ...
devyog - 10/12/2017 - 06:21
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 ... one (1). We will perform operations on individual bits. C program #include <stdio.h> main ( ) { int ...
devyog - 23/11/2019 - 11:40
C program to find next prime palindrome
C program to find next prime palindrome: a user will enter a number, and we ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <math.h> int ... ) { long n , t , r = 0 , c , d ; printf ( "Enter an integer \n " ) ; ...
devyog - 01/12/2019 - 08:56