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
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
Basic Introduction of Makefile-set1
What is makefile? "makefile" is a file which tell to 'make' utility what to do. Most often, the makefile tells 'make' utility how to...
Mar 16, 2021
2 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
why size of empty class object contains 1 byte in c++?
Compiler allocate 1 byte of memory of empty class object for unique address identification. So, if a class have multiple objects they can...
Mar 10, 2021
1 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
Why C++ is powerful language
C++ is a powerful general-purpose programming language. It can be used to develop operating systems, browsers, games, and so on. C++...
Mar 8, 2021
1 min read
bottom of page