Wednesday 13 March 2013

Different variable scope 2


#include<stdio.h>
int main(){
    int xyz=20;{
         int xyz=40;
    }
    printf("%d",xyz);
    return 0;
}
20
Explanation:
Two variables can have same name in different scope.


Blog Author: Vijay Kumar

Go to: Java Aptitude

No comments:

Post a Comment