KodeGod.com

047. Technical interview question: Give the output of following code

 
void main()
    {
        int const k = 5;
        k++;
        printf("k is %d", k);
    }