KodeGod.com

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

  
void main(){
            char c=125;
            c=c+10;
            printf("%d", c);
}