Program to find largest element in 2D Array Program to find largest element in 2D Array #include<stdio.h> int main() { Β Β int r; Β […]
Read moreMonth: January 2024
OCR 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 moreBinary To Decimal in C
Binary To Decimal in C Binary To Decimal in C Question: Write a C program to convert a Binary number into Decimal number. […]
Read moreC++ Factorial Program
C++ Factorial Program C++ Factorial Program #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;i–){ Β Β […]
Read moreC++ Factorial Program
C++ Factorial Program C++ Factorial Program #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;i–){ Β […]
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 moreDecimal To Binary in C
Decimal To Binary in C Decimal To Binary in C Question: Write a C program to convert a Decimal number to Binary number. […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream.h> using namespace std; int main () { cout<<“Hello World !”; return 0; } […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM C++ FIRST PROGRAM #include<iostream> using namespace std; int main () { cout<<“hello world”; return; } Topics Covered […]
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 more
Recent Comments