#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