railway RRB JE (CBT I + CBT II) Mock Test 2024 Programming and Data Structure Programming in C Scope of a Variable
What is the output of this program ? ]
void main()
{
int a=b=c=10;
a=b=c=50;
printf(“\n %d %d %d”,a,b,c);
}1
50 50 50
2
Compile Time Error
3
10 10 10
4
Three Garbage Value