#include<stdio.h>
int main()
{
int i=32, j=0x20 ,k,l,m;
k= i|j;
l=i&j;
m= k^ l;
printf("%d %d %d %d %d\n",i,j,k,l,m);
return 0;
}
output:
32 32 32 32 0
please explain me ... j=0x20;....wht does it mean.....?
and hoe ite value is 32...???
--
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.