C++ Keylogger in C++ In this article, we have developed a Keylogger in C++ Programming Language. This is a strong project for an SDE portfolio.
C++ Multi-thread C++ program to find all prime numbers < N In this article, we have developed a Multi-thread C++ program to find all prime numbers < N. We have covered Sieve or Eratosthenes algorithm and used thread in C++.
C++ Setprecision in C++ In this article, we will be discussing about Setprecision in C++ in detail along with C++ code examples.
C++ Stopwatch console application in C++ In this article, we have developed a stopwatch as a console application in C++ Programming Language. This involve the concept of using threads. This is a good project for SDE portfolio.
C++ Fabs and abs in C++ In this article, we have explained the fabs and abs functions in C++ Programming Language which are used to get the absolute value of different numeric values. We have compared the differences between fabs and abs as well.
C++ Calculator console application in C++ In this article, we have explained how to develop a Calculator in C++ Programming Language as a console application. This is a strong beginner project for SDE Portfolio.
C++ vector::size() vs vector::capacity() In this article, we will explore and contrast the size() and capacity() functions of the vector class in C++.
C++ * vs & (pointer, reference) in C C programming language is a strong statically typed language. This means that we are responsible for the declaration of variable type, dynamic memory allocation and free of such memory space after it has been used explicitly. Pointer and reference are very important concepts in C.
C++ strncpy in C++ [+ Problems with it, safe alternatives] In this article, we will learn about cstring library function strncpy() in C++ and understand the problems with it, safe alternatives and similar functions.
C++ strtol in C++ In this article, we will learn about strtol in C++ and we will also compare it with other similar functions such as strtoul.
C++ snprintf() function in C++ In this article, we will look at snprintf() function in C++ which is used to print strings in formatted way as a character buffer.
C++ Struct inheritance in C++ One of the most important concepts in object-oriented programming is inheritance. Inheritance allows us to define a class or a structure (struct) in terms of another class, which makes it easier to create and maintain an application.
C++ ifstream in C++ In this article, we have explored the idea of ifstream in C++ and explained how it is used with C++ code examples.
C++ memcmp() function in C++ memcmp() is a C++ function that compares a specified number of characters in two pointer objects.
C++ Delete default constructor in C++ In this article, we have explored how to delete the default constructor in C++ Programming Language using different C++ code examples.
C++ static_cast in C++ In this article, we will learn about static_cast in C++ Programming Language and understand when to use it in contrast to similar functions like dynamic_cast.
C++ substr in C++ In this article, we will learn about substr() function in C++ which is used to extract a sub-string from a given string.
C++ Typing Speed Project in C++ In this article, we will work on the C++ project of Typing Speed. We will learn about implementation of the complete program in C++ which will check our typing speed.
C++ Determine index from pointers in C++ In this article, we will look at how to compute the index using pointers returned by STL functions. It will be explained in such a way that even a 4th grader would get it.
C++ Different ways to delete elements in list in C++ In this article, we will explore Different ways to delete elements in list in C++ such as pop_front(), pop_back(), clear(), removeif() and much more.
C Programming typedef struct in C [Explained] In this article, we have explored the concept of typedef struct in C Programming Language which brings in two core concepts. We have explained the ideas with code examples and differences between typedef struct and struct.
C++ Different Ways to Convert Vector to List in C++ STL (7 ways) In this article, we have explored 7 different methods to convert vector to list in C++ Programming Language.
C++ istringstream in C++ In this article we are going to learn about istringstream and explore how to use it for various input cases using C++ code examples.
C++ Reverse List in C++ STL [4 methods] In this article, we have explored 4 different ways to reverse a list in C++ Standard Template Library (STL). We have explored iterative and recursive approach using Two Pointer approach as well.
C++ MemCpy vs MemMove [Explained with code] In this article, we have explored the differences between the two built-in functions memcpy and memmove of C programming language. Both are part of the C library - .