int main() { std::thread* threadHello = new std::thread(printHello); std::thread* threadThread = new std::thread(printThread); return 0; } void printHello() { std::cout << "Hello" << std::endl; } void printThread() { std::cout << "Thread" << std::endl; }
C Software Engineer Interview Questions
994 c software engineer interview questions shared by candidates
6 selections and 3 coding problems. The phone interview is about RR schedule.
Do you know about smart pointer in C++? What does it do?
Design system for processing incoming stock purchase orders
Implement c++ string class.
OAs were C++ trivia and easy/medium leetcode. Phone interview was data structure design.
[Tech] What's Inheritance for?
Spanning tree: not difficult, just forgot what it is
Draw geometric shapes in visual studio.
How is std::map and std::unordered stl containers implemented internally - the underlying data structure?
Viewing 751 - 760 interview questions