Find largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { […]
Read moreAuthor: Astha Gaur
Swapping of two numbers in C++
Swapping of two numbers in C++ Swapping of two numbers in C++ Swapping of two numbers : #include <iostream> using namespace std; int main() […]
Read moreFind factorial of a number in C++
Find factorial of a number in C++ Find factorial of a number in C++ #include <iostream> using namespace std; int main() { int n; […]
Read morePATTERN PRINTING -2 in C++
PATTERN PRINTING -2 in C++ PATTERN PRINTING -2 in C++ STAR TRIANGLE #include<iostream> using namespace std; int main() { int n; cout<<“enter n : “; […]
Read morePattern Printing -1 in C++
Pattern Printing -1 in C++ Pattern Printing -1 in C++ NUMBER SQUARE #include<iostream> using namespace std; int main(){ int n; cout<<“Enter a number : “; […]
Read moreProgram to find largest element in 2D Array
Program to find largest element in 2D Array Program to find largest element in 2D Array #include<stdio.h> int main() { Β Β int r; Β […]
Read moreOCR and MICR
OCR and MICR OCR and MICR OCR OCR is stands for ( Optical Character Recognition ) . It is a technology that converts different types […]
Read moreFunctions of Operating System
Functions of Operating System Functions of Operating System Β Process Management Memory Management Security File Management Device Management Backup and Recovery 1- PROCESS MANAGEMENT The operating […]
Read moreOperating System
Operating System Operating System Operating system is a system software. It basically manages all the resources of the computer . An operating system acts as […]
Read moreSum and Average of an Array
Sum and Average of an Array Sum and Average of an Array Code : #include<stdio.h> int main(){ Β Β int n; Β Β int sum=0; […]
Read more
Recent Comments