Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
What is the output of the below given code?
# include
int x = 5;
int main() {
int x = 90;
{
int x = 10;
printf("%d",x);
}
}1
5
2
10
3
90
4
Error