1.
#include<stdio.h>
main()
{
int i=1;
printf("\n%d",i^=1%2);
printf("\n%d %d",i^=1%2,i<<=1%2);
return 0;
}output 3 3 hey shudnt the output be 3 2 -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/algogeeks?hl=en.
