[algogeeks] meaning of null in output

2011-06-30 Thread himanshu kansal
what is meaning of (null) in d output in cnd what r d possible reason nd causes for dt -- You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group, se

Re: [algogeeks] meaning

2011-06-21 Thread Manikanta Babu
0x20 means its a hexa decimal number and the decimal value is 32. Calculation is : 16 power of 0 + 2 * 16 power of 1 = 32 Thanks, Mani http://www.sanidapa.com On Tue, Jun 21, 2011 at 12:43 PM, Srinivasan Sivaramachandran < 21.sr...@gmail.com> wrote: > Hexadecimal representation, 20h equals 32d

Re: [algogeeks] meaning

2011-06-21 Thread Srinivasan Sivaramachandran
Hexadecimal representation, 20h equals 32d Srinivasan Sivaramachandran On 21-Jun-2011 12:40 PM, "sahil" wrote: > #include > 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

[algogeeks] meaning

2011-06-21 Thread sahil
#include 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