1
vote
switch case vs if else
Note too that the if/else construct can be more efficient if you know certain cases are more likely than others.
…
1
vote
0
votes
So you think you know pointers?
Assume that sp is 0x000010000
sizeof(int) is 4
sizeof(int *) is 8
Output will be:
0x000010000
0x000010004
0x000010000
0x000010008
& ope …
1
vote
Does C++ still matter?
I think it's very useful to learn. You may or may not need it professionally, but it is neat to learn a transparent object-oriented language. By "transparent" I mean that it's relatively easy (and …
1
vote
Preparation for a c++ interview
The necessary (but not sufficient) part of doing well on an interview about C++ is being good at writing code in C++. The only way to be good at writing code in C++ is to do it, a lot.
Good …
0
votes
Interview questions to assess Linux C programmers
If all you are trying to do is assess his knowledge of a specific language, and you don't know that language, you're gonna fail at evaluating him.
Can you instead evaluate "can this guy pro …
