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
Do you know about smart pointer in C++? What does it do?
Design system for processing incoming stock purchase orders
6 selections and 3 coding problems. The phone interview is about RR schedule.
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
What is a virtual function? What is a vtable and vpointer? What does the inline keyword do? Explain move semantics Rule of 3 and 5 etc.
Explain some of the 3D projects you've worked on.
Viewing 751 - 760 interview questions