C Software Developer Interview Questions

396 c software developer interview questions shared by candidates

I can't disclose as their policy. But the assignment was pretty well designed. It was tricky but I can say it was not that difficult. Maybe 10 lines of code as total. They give you 9 hours to solve the problem. It took me less than an hour.
avatar

C++ Software Developer

Interviewed at think-cell

4.4
May 20, 2021

I can't disclose as their policy. But the assignment was pretty well designed. It was tricky but I can say it was not that difficult. Maybe 10 lines of code as total. They give you 9 hours to solve the problem. It took me less than an hour.

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); } }
avatar

Junior Software Developer (C++)

Interviewed at Accelya Group

3.4
Aug 15, 2024

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); } }

Viewing 121 - 130 interview questions

Glassdoor has 396 interview questions and reports from C software developer interviews. Prepare for your interview. Get hired. Love your job.