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
Sequence containers in C++
Sequence containers implement data structures which can be accessed sequentially. array: Static contiguous array (class template)...
Apr 13, 2021
2 min read
Associative container in c++
Associative containers implement sorted data structures that can be quickly searched. Set: Collection of unique keys, sorted by keys....
Apr 4, 2021
4 min read
Multithreading in C++::Future and promise
Promise: promise is a class template and its object promises to set the value in future. Each std::promise object has an associated...
Mar 30, 2021
2 min read
Smart pointer in C++
what is smart pointer? Smart pointer is wrapper class over a pointer with operator like * and -> overloaded. The object of smart pointer...
Mar 25, 2021
2 min read
Segmentation fault in C++.
Segmentation fault is a specific kind of error caused by accessing memory that “does not belong to you. Example of Segmentation fault....
Mar 21, 2021
2 min read
Pointer in c++
what is pointer? Pointer is a variable which store address of another variable. Use of pointer? Pointers are very useful for another type...
Mar 21, 2021
3 min read
Memory Management in c++
What is memory? Memory is used to store the data and instruction. What is memory Management? Memory management is a process of managing...
Mar 18, 2021
5 min read
Library in c++
What is library: A library is a package of code that is meant to be reused by many programs. There are two types of libraries: 1) static...
Mar 15, 2021
4 min read
Compilation Process in C++
What is a compilation? Compilation is a process of converting the source code into the object code. It is done by help of compiler. What...
Mar 14, 2021
5 min read
difference between Shallow copy and deep copy in C++
Shallow copy: Shallow copy means , new object created by simply copying the data of all variable of the original object. Shallow copy...
Mar 10, 2021
2 min read
write a program to reverse the string in same position
Input:Hello i am in bangalore output:olleH i ma ni erolagnab Input:Hello i am in bangalore output:bangalore in am i Hello // Example...
Mar 10, 2021
1 min read
bottom of page