Page not found
Search results
C++ program to add two matrices
C++ program to add two matrices. C++ matrix addition program #include <iostream> using namespace std ; ...
devyog - 31/10/2019 - 20:06
C++ program to add two numbers
C++ program to add two numbers. C++ programming code #include ... return 0 ; } C++ addition program using class #include <iostream> using namespace ...
devyog - 22/02/2018 - 13:39
C program to restrict mouse pointer in a circle
C program #include<graphics.h> #include<conio.h> ...
devyog - 01/12/2019 - 08:56
C program to add two complex numbers
C program to add two complex numbers: this program performs addition of two complex numbers which will be entered by a ... real and imaginary parts of two complex numbers. In our program we will add real parts and imaginary parts of complex numbers and ...
devyog - 23/11/2019 - 11:40
C program to check subsequence
C program to check Subsequence; don't confuse it with substring. In our program, we check if a string is a subsequence of another. A user will ... we test if one of them is a subsequence of the other. The program prints yes if either the first string is a subsequence of the second ...
devyog - 25/10/2020 - 14:07
C program to delete an element from an array
C program to delete an element in an array: This program deletes or removes an element from an array. A user will enter the ... || []).push({}); Remove element from array C program #include <stdio.h> int main ( ) { ...
devyog - 11/10/2020 - 14:08
Leap year program in C
Leap year program in C to check if a year is a leap year or not, a leap year is one that ... divisible by 400. Read more about a Leap year . The program is based on the Gregorian Calendar. ... || []).push({}); Leap year C program #include <stdio.h> int main ( ) { ...
devyog - 02/10/2020 - 00:25
C program to insert substring into a string
C program to insert a substring into a string: This code inserts a string into ... we obtain the string "C programming is amazing". In our C program we will make a function which performs the desired task and pass three ... You can insert the string at any valid position. C program #include <stdio.h> #include <string.h> #include ...
devyog - 23/11/2019 - 11:40
C program to copy a file
C program to copy a file: This program copies a file, firstly you will specify a file to copy, and then you ... 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 get IP address
C program to print IP (Internet Protocol) address of your computer, system ... 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you are working in a compiler and ... = window.adsbygoogle || []).push({}); C program #include<stdlib.h> int main ( ) { ...
devyog - 23/11/2019 - 11:40