#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = “Good”, str2[100] = “morning”; […]
Read moreCategory: Uncategorized
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 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 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 moreChristmas tree ππ
// If you liked it don’t forget to give // a (+1) like. // Thank you all! // By @ Akash.. #include <iostream> #define N […]
Read moreTo check weather a number is Prime or Not
To check weather a number is Prime or Not To check weather a number is Prime or Not Question: Write a C program […]
Read moreProgram for diamond shape π
#include <iostream> using namespace std; class A { public: Β Β void show() { Β Β Β Β cout << “Diamond pattern: “; Β […]
Read morePrint Even Odd with help of function
Print Even Odd with help of function Print Even Odd with help of function #include <stdio.h> #include <stdbool.h> bool isPrime(int num) { if (num […]
Read more
Recent Comments