Category: C++ Programs
Posts of Category: C++ Programs
Posts of Category: C++ Programs
How to Create C/C++ Addons in Node
How to Create C/C++ Addons in Node Node.js is great for a lot of reasons, one of which is the speed in which you can build meaningful applications. However, as we all know, this comes at the price of performanc...Learn MoreC ProgramsC++ ProgramsJavaScriptNodejsFind kth Smallest and Largest Element in an Array in C++
Find kth Smallest and Largest Element in an Array in C++ Hello everyone, in this post we are going to go through a very popular and recently asked coding question. Finding the kth smallest and largest ele...Learn MoreCompetitive ProgrammingArrayC++ ProgramsC++ String Trim – 3 Ways to Trim String
C++ String Trim – 3 Ways to Trim String Hello everyone, In this article we will see how string trimming can be done in C++. Let us first understand what is trimming and where it can be of importance. Trim: Trim...Learn MoreStringC++ ProgramsC++ STLC++ Map Check if Key Exists – 2 Ways to Check
C++ Map Check if Key Exists – 2 Ways to Check Hello everyone, In this article, we will see different ways by which we can check if a particular key exists in a map or not. Let’s first go through what a map is: ...Learn MoreC++ ProgramsC++ STLBetter Alternatives for ‘using namespace std’ in C++
Better Alternatives for ‘using namespace std’ in C++ Most new C++ programming students are taught to add “using namespace std” in the global scope after introducing the headers needed for their programs to comp...Learn MoreC++ ProgramsLearn C++How to Generate Random Number in C and C++?
How to Generate Random Number in C and C++? Here you will get program and learn how to generate random number in C and C++. We can use rand() function to generate random number. It is defined in stdlib.h header...Learn MoreC ProgramsC++ ProgramsC TutorialsDifference between Reference and Pointer in C++
Difference between Reference and Pointer in C++ Here you will learn about difference between reference and pointer in C++. Reference: Reference contains address of a variable. It can be called as alte...Learn MorePointerC++ ProgramsDownload Borland C++ Compiler For Free
**Download Borland C++ Compiler For Free** Here you will know how to download borland C++ compiler for free. Borland C++ compiler is used to compile and run C and C++ program on windows platform. Borland C++ co...Learn MoreC++ ProgramsDownloadsHow to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators?
How to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators? You have done swapping of two numbers using temporary variable or by using arithmetic operators. It can be done in following ...Learn MoreSimpleC ProgramsC++ ProgramsTutorialsDownload Turbo C++ for Windows 7, 8, 8.1, 10 [32/64 bit]
**Download Turbo C++ for Windows 7, 8, 8.1, 10 [32/64 bit]** This article is about download turbo C++ for windows 7, 8, 8.1, 10 both 32 and 64 bit. Hello everyone, after a long time I am once again here to shar...Learn MoreC++ ProgramsDownloadsWindowsC++ Hotel Management Project
C++ Hotel Management Project Here you will get C++ hotel management project. This system provides various options like booking a room, checking customer details, editing or deleting any customer, checking all a...Learn MoreC++ ProgramsProjectsC++ program to find sum of series 1 + 2 + 3 +……+ n
C++ program to find sum of series 1 + 2 + 3 +……+ n #include <iostream.h> #include <conio.h> void main() { clrscr(); int i, n, sum = 0; cout << '1+2+3+……+n'; cout << 'nE...Learn MoreSum of SeriesC++ Programs