[algogeeks] C DEBUGGING

2011-07-10 Thread radha krishnan
#includestdio.h void main(){ signed x; unsigned y; x = 10 +- 10u + 10u +- 10; y = x; if(x==y) printf(%d %d,x,y); else if(x!=y) printf(%u %u,x,y); } OUTPUT? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks

Re: [algogeeks] C DEBUGGING

2011-07-10 Thread rajeev bharshetty
X and Y are equal and both are zeroes So the output is 0 0 On Sun, Jul 10, 2011 at 3:03 PM, radha krishnan radhakrishnance...@gmail.com wrote: #includestdio.h void main(){ signed x; unsigned y; x = 10 +- 10u + 10u +- 10; y = x; if(x==y) printf(%d %d,x,y); else