top of page
This site was designed with the
.com
website builder. Create your website today.
Start Now
All of us do not have equal talent. But, all of us have an equal opportunity to develop our talents.
-A.P.J Abdul Kalam
Train of Thought
Home
My Blog
Meet the Blogger
ConnectWithUs
More
Use tab to navigate through the menu items.
All Posts
My Top 5
C++
C++ Interview
Linux
Automotive
Finance
Education
Technology
Health
Career
Art & Culture
Travel
Embedded Programming
Search
Reverse Single LinkedList using class
#include<iostream> using namespace std; class node { public: int info; node *next; }; class list { private: node *head; public: list()...
Dec 12, 2021
1 min read
Create Single LinkedList using class.
#include<iostream> using namespace std; class node { public: int info; node *next; }; class list { private: node *head; public: list()...
Dec 12, 2021
1 min read
Move constructor in c++.
rvalue Reference: rvalue references can do what lvalue references fails to do i.e. a rvalue reference can refer to rvalues. Declaring...
Jul 4, 2021
3 min read
bottom of page