Apr
28th | 2008

A Programming Job Interview Challenge

Posted by Shahar Y |
Filed under Unmanaged Code |

Recently, I ran into an interesting job interview question in C++ which I want to share. Lets take a look at the following code:

// Option A. 

char str1[] = “example”;  

str1[1] = ‘a’;  

// Option B.  

char* str2 = “example”;  

str2[1] = ‘a’;

What would happen if we compile and run this code ?


Continue Reading...

Search Dev102