What will be the output printed by the following C program?
void main()
{
int x=1, i, y=2;
for (i=0; i<5; i++)
{
x<<1;
y=x+i;
}
printf(‘‘%d, %d’’, x,y);
}
1
1, 5
2
32, 5
3
1, 72
4
32, 72