C++ Examples

  1. Write a C++ Program to print a welcome text in a separate line.

C++ thread lambda

#include <iostream>
#include <thread>

using namespace std;

int main()
{
    thread th1([]()
    {
        cout<<"Lambda thread functions";
    });
    
    cout<<"Main thread..\n";
    th1.join();

    return 0;
}

Output

Main thread..
Lambda thread functions
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments