What's your opinion on TDD
Senior Software C Developer Interview Questions
373 senior software c developer 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; }
The first round : copy constructor, delete keyword, memory management(smart pointers, RAII), static keyword for member functions and variable, singleton, code review, checking performance and finding bottlenecks (perf, gprof, intel Vtune), sort (stable and not stable),
What are the strict guarantees of the method contract w.r.t. the object state?
Fix a bug from MariaDB opensource code by installing it on your machine, setting up development env, understand the code and fix the bug. That too for a interview test only.
What do you think makes a good leader?
1- Deep discussion on current project. Also small discussion on past projects. 2- Which debugging tools are used. 3 - Write a program to implement Binary Search 4- write a program to show string class implementation ( own string class with all the thing inside so that we can do operations on string using char array pointer) 5- copy constructor defination for string copy.
Enumerate the type of casts that there exist in C++ and their differences.
How would I implement an unique pointer.
Viewing 281 - 290 interview questions