class, inheritance , OOPs , pointers, write your own smart pointer class, write insertion sort, write selection sort, etc
C Developer Interview Questions
3,506 c developer interview questions shared by candidates
questions are mainly based on pointers
How would you code a TCP reordering proxy?
Winforms communications?
OOPs concept , SQL and 2 simple DSA questions that's all
What is your actual salary?
Least recent cache. leet code (medium)
Identify memory leak: // this function has a memory leak. Can you find it? int i = 5; // <-- char *pszString = (char *)malloc(32); memset(pszString, 0, sizeof(32)); strcpy(pszString, "hi"); if (i > 5) { sprintf(pszString, "%i is greater than 5", i); printf("%s\n", pszString); free(pszString); } else if (i < 5) { sprintf(pszString, "%i is less than 5", i); printf("%s\n", pszString); free(pszString); } }
Count letters in a sentence omitting non alphabet characters: /// /// E.g given the // input string "Hello there!", print the output has to be 'h': 2 /// 'e': 3 'l': 2 'o': 1 't': 1 'r': 1 /// /// input The string containing the letters to count /// // Omit any character that is not in the English alphabet
How is AI applicable to health care.
Viewing 1121 - 1130 interview questions