anirban.datta.24
BAN USER
suppose i write the code
int main()
{
int i=-1, j=2, k=0, m;
m = ++i && ++j || ++k;
printf ("%d %d %d %d", i,j,k,m);
return 0;
}
the output shows:
0 2 1 1
shouldnt it show
0 2 0 0
how does the operation takes place in this?
but this approach without any preorder/postorder traversal, the tree formed eikk not be a balanced. rather it will be a right oriented subtree where each node with be right child of its parent
- anirban.datta.24 March 13, 2012
RepClariceWright, abc at 8x8
I am a passionate and dedicated travel agent whose mission is to turn travel dreams into reality. I am crazy ...
Reprobinroi335, Android test engineer at ABC TECH SUPPORT
I believe the deepest changes you can make to improve your quality of life. how to break a family curse ...
Repjaydkelvey, Accountant at Apkudo
I am 34 years old and live in Houston with my family. I am working as a Human resources consultant ...
Repjudydschultz1234, Android test engineer at Eterno Infotech Pvt Ltd
Spent a weekend researching weebles in Nigeria. My current pet project is developing strategies for how to break someone's ...
Repracheljennir, Personnel consultant at Infinite Wealth
Rachel, I am a Personnel consultant who acts as mediator between employers and job seekers. The main task of I ...
suppose i write the code
- anirban.datta.24 March 13, 2012int main()
{
int i=-1, j=2, k=0, m;
m = ++i && ++j || ++k;
printf ("%d %d %d %d", i,j,k,m);
return 0;
}
the output shows:
0 2 1 1
shouldnt it show
0 2 0 0
how does the operation takes place in this?