Rate yourself on various concepts in c++ you are familiar with.
C Developer Interview Questions
3,500 c developer interview questions shared by candidates
Ral, posizione in azienda, offerta lavorativa, conoscenze tecniche
Can you name different echniques for video compression?
What will be printed to the Console at the end of this code? int global = 0; Thread t1 = new Thread(() => { int local = 0; while(global < 3) { local += 1; global += 1; } Console.WriteLine(local); }); Thread t2 = new Thread(() => { global += 1; }); t1.Start(); t2.Start();
What is the difference between struct and union keywords in C ?
I had to complete an online challenge on C++ coding. The test involved multiple bullet point question plus 2/3 coding exercises to be completed within a time limit.
Forgot the others, can only recall one question: about using complex Linux comment to do something.
A cosa serve il volatile in C
It was multithreaded foo() and bar() printing task as the one you can find on leetcode website. And the common C++ questions RAII, OOD.
Doing sum of 2 array lists representing number
Viewing 3491 - 3500 interview questions