Ads block

Banner 728x90px

Data abstraction in c++ example with header file abstraction and specifier abstraction


//Data Abstraction Using Access Specifiers # include < iostream > # include < math.h > using namespace std ; class abstract { //Class Declar…
Read more »

C programming output checking-05 || Recursion function example with prop...


C programming output checking-05 || Recursion function example with prop...
IT job preparation. Bank job preparation. Govt. it job preparation Output checking of c program. Recursion function with proper description in c/cpp. How does …
Read more »

C programming output checking-04 || IT job preparation || Infinite Loop ...


C programming output checking-04 || IT job preparation || Infinite Loop ...
Govt. it job preparation Output checking of a c program. Running a loop for infinite time when the condition is not true.
Read more »

C programming output checking-02 || IT job preparation || Floor and ceil...


C programming output checking-02 || IT job preparation || Floor and ceil...
Output checking of a c program. Finding floor and ceil value of a negative number in c. C program to find the floor value of a number. C program to find the ce…
Read more »

C programming output checking-02 || IT job preparation || Function calli...


C programming output checking-02 || IT job preparation || Function calli...
#best_programming_solution #it_job_preparation #output_of_c_program #Alamgir_Hossain IT job preparation. Bank job preparation. Govt. it job preparation Output …
Read more »

C programming output checking-01 || IT job preparation || Programming in...


C programming output checking-01 || IT job preparation || Programming in...
#best_programming_solution #it_job_preparation #output_of_c_program #Alamgir_Hossain IT job preparation. Bank job preparation. Govt. it job preparation Output …
Read more »

তাওহীদি প্রেরণার অবমাননা -আলমগীর হোসেন


তাওহীদি প্রেরণার অবমাননা  -আলমগীর হোসেন
তাওহীদি প্রেরণার অবমাননা - আলমগীর হোসেন     মানবতার মুক্তির দূত রাহমাতুল্লিল আলামিন । যার আগমনে আত্মহারা সব, বিয়োগে স্তব্ধতা যাকে উপেক্ষায় …
Read more »

How to change the name of main function in c/cpp programming??


How to change the name of main function in c/cpp programming??
How to change the name of main function in c/cpp programming?? #best programming solution #interesting programming solution C programming is the basic buildin…
Read more »

Swapping two numbers using c syntax, function and the concept of class a...


Swapping two numbers using c syntax, function and the concept of class a...
Swapping two numbers by using the third variable. Swapping two numbers by using function. Swapping two numbers by using the concept of object oriented programm…
Read more »

CPP tutorial, Constructor overloading in object-oriented programming wit...


CPP tutorial, Constructor overloading in object-oriented programming wit...
Constructor overloading in object-oriented programming with cpp/c++ What is an overloading constructor in oop with cpp? Constructor overloading in cpp/c++. Con…
Read more »

Addition subtraction using class and object in C++


# include <iostream> using namespace std ; class addSub{ public : int num1, num2; void inPut () { cout << &qu…
Read more »

Major parts of a C program with proper example, 52D Batch


Major parts of a C program with proper example, 52D Batch
/*         Author: Alamgir Hossain         Date: 5/10/2020         Purpose: to knowing major parts of a c program */ // 1. Documentation part/documentatio…
Read more »

Function Overloading, operator overloading, function overriding in CPP/C++ || Polymorphism in CPP


Function Overloading, operator overloading, function overriding in CPP/C++ || Polymorphism in CPP
Function/Method Overloading in CPP/C++: #include<bits/stdc++.h> using namespace std; class prime{ public:         void sum(int a, int b)         {      …
Read more »

Different types of macro calling with proper example in C


Different types of macro calling with proper example in C
#include<stdio.h> #define sum(num1, num2) num1 + num2//Macro Definition #define multiplication(num1, num2, num3) num1 * num2 * num3 #define maximum(a, b…
Read more »

Input and Output in Structure array with different function || Structure in C Programming || Input and Output in Structure


Input and Output in Structure array with different function || Structure in C Programming || Input and Output in Structure
Program -01 Structure Creation in C programming. #include<stdio.h> struct student {     int id;     char name[100];     double result; }; int main() {  …
Read more »

Some important abbreviation for IT Related Jobs


CODASYL: Committee/Conference of Data System Language SNMP: Simple Network Management Protocol WCCP: Web Cash Control Protocol IPSLA: Internet Protocol…
Read more »

C program to find first & second largest number in array


C program to find first & second largest number in array
/* C program to find first & second largest number in array         Array: 3, 10, 80, 20, 5         Max1: 80         Max2: 20 Logic:         1. Input size…
Read more »

C program to swap two numbers in different ways


C program to swap two numbers in different ways
/* Md. Alamgir Hossain Lecturer, Dept. of CSE, Prime University */ //C program to swap two numbers //Input:    a = 10, b = 25 //Output: b = 25, a = 10 #includ…
Read more »

CPP program to check a number is prime or not using class and object


CPP program to check a number is prime or not using class and object
/* CPP program to check a number is prime or not using class and object 2, 3, 5, 7, ....... */ #include<iostream> using namespace std; class prime{ priv…
Read more »

CPP program to calculate the Factorial of a number using class and object


CPP program to calculate the Factorial of a number using class and object
/* Alamgir Hossain Lecturer, Dept. of CSE, Prime University CPP program to calculate the Factorial of a number using class and object 5! = 5 * 4 * 3 * 2 * 1 =…
Read more »

C program to find maximum and minimum element in an array


C program to find maximum and minimum element in an array
/* Alamgir Hossain Lecturer, Dept. of CSE, Prime University. C program to find maximum and minimum element in array.         Example: 20, 17, 10, 5, 50       …
Read more »

C program to count even and odd elements in an array


C program to count even and odd elements in an array
/* Alamgir Hossain Lecturer, Dept. of CSE, Prime University. C program to count even and odd elements in an array. Array: 20, 12, 13, 50, 17 Even: 3 Odd: 2 */…
Read more »

Major Parts of a C program with proper example


Major Parts of a C program with proper example
/*         01. Documentation Section:         Name: Alamgir Hossain         Date: 23/08/2020         For knowing about major parts. */ #include<stdio.h&…
Read more »

Parameterized constructor in cpp/c++


#include<iostream> using namespace std; class prime{ public:         int id; //Data Member         string name; //Data Member         prime(int value, s…
Read more »

Default constructor with proper example in cpp in bangla


#include<iostream> using namespace std; class prime{ public:         int id; //Data Members         string name; //Data Members         prime(){//Defaul…
Read more »

Algorithm or Pseudocode and time complexity analysis for calculating maximum and minimum value from an array using divide and conqure method


Algorithm or Pseudocode and time complexity analysis for calculating maximum and minimum value from an array using divide and conqure method
Algorithm for calculating max and min value from an array:     Algorithm maxmin(int low, int high, int max, int min)     //low, high are used as in…
Read more »