intro,python related basic qns and coding
Software Engineer C Developer Interview Questions
5,483 software engineer c developer interview questions shared by candidates
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
Least recent cache. leet code (medium)
oops,dsa easy level questions,cloud basics ,programmming laguage concepts,project
First question was to introduce yourself.
Write a code to swap the numbers in an array.
How is the CEO of cognizant
Est-ce que vous pouvez expliquer votre projet scolaire sur C#?
What is your actual salary?
Viewing 1851 - 1860 interview questions