Convert color from RGBA to BGRA in C
C Software Engineer Interview Questions
603 c software engineer interview questions shared by candidates
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; }
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.
Q: What's the complexity of doing X using structure Y?
Q: What did your role at company X involve on a day-to-day basis?
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.
Viewing 451 - 460 interview questions