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
Print the odd/even number through multiple thread.
// Example program #include <iostream> #include<thread> #include<mutex> #include<condition_variable> #include<chrono> using namespace...
Jan 29, 2022
1 min read
sort array
// Example program #include<iostream> using namespace std; void sort(int *arr,int length) { for(int i =0; i<length;i++) { for(int j =...
Jan 28, 2022
1 min read
How to Find the 2nd Highest number in array.
// Example program #include<iostream> using namespace std; int getMaxValue(int *arr,int length) { int max = arr[0]; int max1 = arr[0];...
Jan 28, 2022
1 min read
bottom of page