TCS Company Programming Variables

Predict the output of following code:
main()
{
int a,x=2,3,4,5; // Error because list is not within ( )
a=1,2,3,4,5;
printf(“%d%d”,x,a);
}
1. Error
2. 5,1
3. 2,1
4. 5,5

Read Solution (Total 6)

TCS Other Question

Predict the output of following code:
main()
{
int a,x=(2,3,4,5); //valid statement x = last value in list
// x = 5 during declaration list
should be specified inside ( )
a=1,2,3,4,5; // valid; a = 1; first value of the list is
assigned to variable
printf(“%d%d”,x,a);
}

1. Error
2. 5,1
3. 2,1
4. 5,5
Predict the output of following code:
main()
{
int x=10,y=-10;
printf(“%x t”,x<>2);
}

1. 28 fffd
2. 40 -3
3. Error
4. 0,1