Page not found
Search results
C program to find maximum element in a matrix
C program to find the largest or the maximum element in a matrix. C program #include <stdio.h> int main ( ) { ...
devyog - 03/12/2019 - 22:15
functions of graphics.h
C graphics using graphics.h functions or WinBGIM (Windows 7) can be used to ... and many more. Using functions of graphics.h in Turbo C compiler you can make graphics programs, animations, projects, and games. You ... errors while using that function and a sample C graphics program with its output. (adsbygoogle = ...
devyog - 29/09/2018 - 20:50
C program to merge two arrays
C program to merge two arrays into another array. They are assumed to be sorted ... = window.adsbygoogle || []).push({}); C program to merge two sorted arrays // It is assumed a user will ...
devyog - 19/11/2019 - 20:02
Anagram program in C
Anagram program in C to check whether two strings are anagrams or not. They are assumed ... and "CAB" are anagrams, as every character, 'A,' 'B,' and 'C' occur the same number of times (one time here) in both the strings. A ...
devyog - 09/10/2020 - 23:32
C program to get IP address
C program to print IP (Internet Protocol) address of your computer, system ... works for Windows XP and Windows 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you ...
devyog - 23/11/2019 - 11:40
getpixel function in c
... y). Declaration: int getpixel(int x, int y); C program for getpixel #include<graphics.h> #include<conio.h> ...
devyog - 28/02/2025 - 22:18
C program to copy a file
C program to copy a file: This program copies a file, firstly you will specify a ... to copy in "read" mode and target file in "write" mode. C program #include <stdio.h> #include <stdlib.h> int ...
devyog - 23/11/2019 - 11:40
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 ...
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 files ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> int ...
devyog - 23/11/2019 - 11:40
C++ program to add two arrays
C++ program to add two arrays. C++ programming code #include<iostream> using namespace ...
devyog - 31/10/2019 - 20:16