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 an array in same array.
#include <iostream> using namespace std; int main() { int arr[] = {1,2,3,4,5,6,7}; int len = sizeof(arr)/sizeof(arr[0]); for(int i =...
Apr 21, 2022
1 min read
write a program to reverse word in a string.
#include <iostream> //#include<string.h> #include<string> using namespace std; int main() { //char str[100] = {"Hello World"}; string str...
Mar 31, 2022
1 min read
Producer Consumer Program in Multithreading.
#include <iostream> #include<deque> #include<thread> #include<mutex> #include<condition_variable> std::deque<int> buffer; std::mutex mu;...
Mar 27, 2022
1 min read
bottom of page