vote up 3 vote down star
5

What single question or problem allows you to most effectively assess a job applicants' understanding of the C language during an interview?

flag

4  
"how many answers to questions with the 'c' tag you left on stackoverflow?" – valya Nov 3 at 3:53
5  
"Where do you C yourself in 5 years?" Sorry. – Grumdrig Nov 3 at 3:54
1  
pointers pointers pointers! – Amro Nov 3 at 3:55
1  
Interestingly, I cannot find a duplicate of the effective interview question for just C. I'll have to let this one pass :-) Changing tags to ensure it's C only. – paxdiablo Nov 3 at 3:55
5  
Community wiki? – bdonlan Nov 3 at 3:56
show 5 more comments

closed as subjective and argumentative by gnovice, Kinopiko, Assaf, SilentGhost, ChssPly76 Nov 3 at 22:26

9 Answers

vote up 7 vote down check

Just ask a question that uses char **ptr and perhaps does some pointer arithmetic.

If they understand pointers well then they understand C.

Update: You can also look here: http://www.techinterviews.com/c-interview-questions-and-answers-3

link|flag
7  
Are those asterisks supposed to refer to a footnote that you left out accidentally? – James McNellis Nov 3 at 3:57
6  
@James: (**) if you are reading this, you failed the interview :) – Amro Nov 3 at 3:58
It was actually an error, I meant to refer to double pointers, as, doing a simple pointer is trivial, but understanding pointers to points takes more experience. – James Black Nov 3 at 3:59
I guess I should explicitly mark jokes as jokes in the future... sigh – James McNellis Nov 3 at 4:01
@James McNellis - I decided to correct it, as some people seem to be pretty serious about errors, but I could see it as a messed up bold-face. :) – James Black Nov 3 at 4:01
vote up 0 vote down
  • What does this code do?

    while (*x++) printf("%c", *x);

  • Implement atoi() (including floating point, but you can leave out scientific notation for simplicity). Talk about what each line does as it is written. It is possible to write a good one in 20 lines or less, and reveals a lot about the candidate's problem-solving thought process.

link|flag
Now I'm curious... what exactly does atoi() have to do with floating point or scientific notation? – D.Shawley Nov 3 at 4:43
Scientific notation can still be used for integers - e.g. 3e+12, but the presence of floating point there has more to do with me having too much wine before bed. :) – Ether Nov 3 at 6:17
vote up 2 vote down

As above with strcpy(), ask a candidate to implement one of the standard C string functions. You can choose the function based on the relative aptitude of the candidate -- say, strrev() for beginners, strstr() for intermediates, and strtok() for advanced users. These are great to do with a whiteboard because you can get an idea of their thought process and problem solving skills. Encourage them to think out loud so you know what they're thinking. It also has the benefit of having a multitude of solutions available, and touch on a number of important skills a C dev should have (pointers, testing for edge cases, memory management, etc.)

link|flag
vote up 0 vote down

You need to have them write a program that can be done in an hour or two. That's the only way.

I can certainly think of lots of C trivia questions that someone familiar with the language ought to know. The problem is, no matter how good they are, they run into the brick wall of "you can't interview your way into hiring a developer". The only to hire a developer is to see if they can develop, i.e., give them a programming test.

Still, you may want to prescreen people. Giving the test is time-consuming and labor-and-facilities intensive. Here are some ideas:

  • Is 3[x] valid syntax? How is it related to x[3]? Why?
  • What is <stdarg.h> or <inttypes.h>?
  • What is size_t?
  • What is recommended practice w.r.t gets(3)?
  • What does xxx(3) even mean?
  • Collect some very short functions with bugs in them, things like variables intended to persist that aren't static. Ask what's wrong.
  • What does const char * const t; mean? Perhaps start with two questions with the individual const qualifiers removed.
  • What does __restrict mean?
link|flag
What does '__restrict' mean? It is a symbol reserved to the implementation by the standard and has no other portable significance. – Jonathan Leffler Nov 3 at 4:33
I could answer the question, and so could you. :-) But really, C99 devotes an entire page to describing what restrict means, plus other paragraphs in other sections. I know what you mean, but if nothing else you might elicit the comment you typed in, and that would reveal something useful. – DigitalRoss Nov 3 at 4:43
Where would you find the snippet '"0123456789abcdef"[n]'? – paxdiablo Nov 3 at 7:22
vote up 1 vote down
  1. Anything to do with double-indirection. Pointers always kill the newbies and double indirection often claims the moderately good.
  2. Write a function that returns whether a character is alphabetic and watch them use a range - ask them why they think the alpha characters are contiguous.
  3. What are the forms of main?

Those last two are good ISO-standard questions to see if they really know the intricacies of C rather than just an implementation. Of course, one question is useless in the real world so keep that in mind. And you should balance the tech questions with the team questions. It doesn't matter how good someone is with the C language if they're a sociopath.

link|flag
vote up 0 vote down

And don't forget to ask the questions like these too:

  1. Why main() function is defined as "int main(void)" ?

  2. a[i] = i++; // What output do you expect or you don't expect? Why?

  3. Compiling through code distributed in separate files.

...

Just to test he aware of standards and whats not it too.

link|flag
Since when main() takes no params? Or you just expect the poor chap to correct you? I know guys who hesitates to argue during the interview although they are really good coders, so I wouldn't recommend Q1 – qrdl Nov 3 at 7:34
Its other variant is: int main(int argc, char *argv[]) and also int main(int argc, char *argv[], char *env[]) on POSIX systems. – Xolve Nov 3 at 17:45
vote up 4 vote down

"Write a strcpy() which performs according to the ANSI C standard."

Failure can involve:

  • use of strlen() (inefficient and illogical -- when they do this, require them to next implement strlen(). Usually, they don't know how to seek the NUL termination of the string and are using strlen() as a crutch.)
  • Testing for situations which the standard library does not protect: checking for NULL, overlapping source and destination
  • Simply struggling for a long time to get this right.

If the interviewee throws in checks for NULL, and so on, it is only fair to ask them whether the standard C implementation does so. It is not required to do so and in general, implementations do not. Also ask them if checking for NULL prevents all possible crashes due to the possibility of being passed incorrect arguments -- the answer should be "No." They fail if they believe that the best approach is to add layers of error checking to low-level library routines which simply must be used correctly. If they believe that will be a helpful way to improve the library, they will add alot of "error correcting" code which in turn provides code paths which gently allow the erroneous code to plow forward.

Nobody should care if the interviewee can't remember what strcpy() returns.

This weeds out an amazing number of people who claim to know C.

Automatic-Hire: The interviewee points out that '\0' is named NUL and (char *)0 is named NULL.

link|flag
1  
What the heck is char * 0;? Looks like a syntax error to me. – bdonlan Nov 3 at 4:00
2  
It's not really a good test by itself, since it depends on detailed knowledge of the behaviour of one library function. – Kinopiko Nov 3 at 4:03
1  
I disagree (obviously) because this "one library function" is vital to using ANSI C. Not all library functions are created equal. An interviewee who claims to know C would require a great explanation for lack of familiarity with strlen(). Lack of familiarity would probably reveal that the interviewee actually uses and knows C++, not C. – Heath Hunnicutt Nov 3 at 4:04
6  
Knowing such obscure things is not an indicator of a good developer – Amro Nov 3 at 4:06
2  
A different question might be: how would you improve the standard strpcpy() function, and what are its flaws. Familiarity with TR24731 (aka the MS safe strcpy_s()) functions would be a bonus. And the return value is of some significance, not least because the actual choice is not the best that could be devised. It satisfies some uses, but there's at least one, possibly several, better choices. Part of the purpose here is to see how they think about the language - can they critique their tools. – Jonathan Leffler Nov 3 at 4:30
show 3 more comments
vote up 5 vote down

You can't decide wether someone has a good understanding of a language through only one question.

You might just hit by chance that bit of knowledge they have.

link|flag
1  
"What would the source code for a minimal UNIX-like kernel look like? Answer in actual source code; all work must be your own." – bdonlan Nov 3 at 3:57
Thats not only expecting language knowledge ;) – gf Nov 3 at 3:59
But you'll certainly find out a lot about their language knowledge - if they bother doing it at all, that is :) – bdonlan Nov 3 at 4:00
I wouldn't bother, i'd suspect they try to get their work done by interviewees :) – gf Nov 3 at 4:06
2  
@bdonlan: thanks for making me relive nightmares from Operating Systems class. – SauceMaster Nov 3 at 4:12
vote up 3 vote down

Drill him on Pointers. Additionally you can ask him to write some of the commonly used functions. Some of them are :

1) strcpy
2) strcmp
3) memcpy
4) memmove
5) Diff between memcpy and memmove

Some other questions could be :

1) Allocate a two dimensional array Dynamically.If he answers it, ask him to repeat exercise with 3 Dimensional array. Make sure he also knows how to free the allocated memory.
2) Some questions related to bit manipulations like how to check if number is power of 2 etc etc.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.