Syntax of Copy and = operator with one char array on heap? how to handle if first its size is 2 and then we need to copy size of 5?
Software Engineer C Interview Questions
994 software engineer c interview questions shared by candidates
Code for anagram string without using sort?
Make a C code that changes the 4th bit of the value stored in address 0x8000.
Normalize a file path/directory: /// /// /// Normalizes the path, meaning that you reduce any unnecessary directory. /// For example, given the value notneeded1/notneeded2/../../hello you would /// return hello. /// /// /// input string /// Normalized string /* * Sample Directory structure * - home * -- documents * -- desktop * -- myMedia * ----- photos * ----- videos * ----- music * -- downloads * /home/myMedia/photos/../../documents -> /home/documents * /home/myMedia/photos/../documents/.. -> /home/myMedia * /home/myMedia/../documents -> /home/documents * ../home -> ../home * home/../../final -> ../final * /home/myMdeia/documents -> /home/myMdeia/documents * Case 1: * C:\ [current working directory] * cd hello [command operating on cwd] * C:\hello [final path] * Case 2: * C:\ [current working directory] * cd notneeded1/notneeded2/../../hello [command operating on cwd] * C:\hello [final path] */
On-site interview: Various topics on C++, OO and Python
Online interview: What is the runtime complexity of the C++ container you used?
Hard to generalize, since every technical interview was completelly different. There was request to code something online, general C++ questions (constructors, destructors, casting, ...), found problem in code excerpt, network communication questions, ...
1st round - discussion with HR and a small coding round 2nd round - Interview with a manager and few questions asked around Virtualization, SQL, C++ 3 round - Design
Was ist ein DB-Index, welche Varianten gibt es, warum ist die Reihenfolge bei mehreren Spalten wichtig
c++ basics oops, macro vs inline function, predicates, vector vs list program to print 1,2,3 using 3 threads thread 1 print 1, thread 2 print 2,thread 3 print 3
Viewing 971 - 980 interview questions