The difference between thread and a process
C Softwareentwickler Interview Questions
1,011 c softwareentwickler interview questions shared by candidates
Convert color from RGBA to BGRA in C
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.
[Tech] What's Inheritance for?
Q: What's the complexity of doing X using structure Y?
Viewing 761 - 770 interview questions