Code:
main()
{
int temp=20742;
short temp1;
temp1 = temp << 8;
printf("The vaue is %d\n",temp1>>8);}
Code:
main()
{
int temp=20742;
short temp1;
temp1 =(temp << 8)>>8;
printf("The vaue is %d\n",temp1);}
If I want to do the operation that I have done in the first code snippet in a single line without using any temp variables, how do I do it?
Thanks

