Project Introduction and scope It is a simple c++ project for beginners to cover some basic topics. Which can help c++ beginners to build la...
Difference between iteration and recursion c++ example
Major difference and similarities between recursion and iteration Both works repeatedly, iteration uses loops and recursion uses functions c...
string class function memchr c example
In string class memchr() function helps us to find a byte within a specific memory block. It takes three parameters memchr(buffer, char, si...
School Management Simple C++ Project Source Code
This school management C++ project for beginners contains both student and teacher record management system . In which a menu is consist of ...
c++ recursive function to print numbers in descending order
Write a program in which a function takes input from user and print numbers in descending order using recursion . Make proper prototype with...
Covariance and Contravariance in C++ Standard Library
Covariance and Contravariance are concepts that come up often as you go deeper into generic programming. While designing a language that su...
CppCon'15 and Silicon Valley Code Camp Presentations
In last couple of months I did a couple of presentations about my recent projects in C++. Session videos, slides, and code for all the prese...
search a character in a string strchr c++ example
strchr is a string class function which helps to find a character in a string. It takes two parameters first is string and second is chara...