Ask C keywords, like versatile, static...
Engineer Software Interview Questions
419,718 engineer software interview questions shared by candidates
If we have a string : "abc ef 12 g", write a function that takes the pointer to the string reorganizes the string to be: "g 12 ef abc". Note that there are 3 spaces after abc, 2 spaces after ef, and 1 space after 12 in the original string, but the spaces are reversed. So in essence, write a function to reverse a string and then put the words between the spaces back in order. And the string length can be known or not.
write a function to check if an unsigned integer is a power of 2. if it is a power of 2, return the power. otherwise return 0.
Using only two pointers how can you tell if a linked-list cycles?
NDA
Finding the minimum k elements of a list
write a function to check the validity of a binary search tree
Given some indeterminate amount of possible values for a coin, count all different ways that those coins could be used to make some specified number n. Return the number of different ways possible.
1 sys design, 3 lc medium coding questions
Count the 1s in the number
Viewing 2441 - 2450 interview questions