Re: [algogeeks] samsung engineering lab interview..

2011-09-13 Thread Rajeshwar Patra
Questions are asked mostly on os and c programming concepts In os virtual memory management and ipc -- 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

[algogeeks] output

2011-09-13 Thread Rajeshwar Patra
http://codepad.org/erdnF74M can anyone explain the output ??? -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- 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

[algogeeks] C project

2011-09-02 Thread Rajeshwar Patra
There was a book named as C projects Does anyone has a link for downloading the book. -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks

Re: [algogeeks] Suggestion

2011-08-25 Thread Rajeshwar Patra
Go for Debashis Samanta -- 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, send email to algogeeks+unsubscr...@googlegroups.com. For more options,

[algogeeks] Android development

2011-08-25 Thread Rajeshwar Patra
How to install android on my system . I am using ubuntu 10.10 -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- 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

Re: [algogeeks]

2011-08-14 Thread Rajeshwar Patra
how does scanf takes the input ??? -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- 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

[algogeeks] reverse

2011-08-11 Thread Rajeshwar Patra
how can we reverse a number using bitwise operators? -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- 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

Re: [algogeeks] reverse

2011-08-11 Thread Rajeshwar Patra
thats wat i wanna know is it possible to reverse a number using bitwise operators -- 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, send email

[algogeeks]

2011-08-10 Thread Rajeshwar Patra
can someone predict the output and give an explanation main() { int i=5; printf(%d %d %d %d %d,i++,i--,++i,--i,i); } -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post

[algogeeks]

2011-08-05 Thread Rajeshwar Patra
mynode* reverse_recurse(mynode *root) { if(root-next!=(mynode *)0) { reverse_recurse(root-next); root-next-next=root; return(root); } else { head=root; } } how does it reverses the singly linked list -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- You received

Re: [algogeeks] C question.. sizeof operator

2011-08-03 Thread Rajeshwar Patra
i=10 -- *Rajeshwar Patra,* *MCA final year,* *Nit Durgapur* -- 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, send email to algogeeks+unsubscr

[algogeeks]

2011-07-28 Thread Rajeshwar Patra
I know this may be a small problem... But i could not understand.. main() { static int a[][2][3]={1,2,3,4,5,6,7,8,9}; int d=a[2][0][4]; } the o/p is: 0 how? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group,

Re: [algogeeks] Re:

2011-07-28 Thread Rajeshwar Patra
so some error msgs must be printed even if we do arr[5][0][4] stiil the output is 0.. -- 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, send email

Re: [algogeeks] Re:

2011-07-28 Thread Rajeshwar Patra
@Aditi But how come it will initialize an address location which hasn't been alloted -- 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, send

Re: [algogeeks] Re:

2011-07-28 Thread Rajeshwar Patra
@Aditi But maybe u are right coz nw after removing the static keyword i am getting a different answer -- 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

Re: [algogeeks] Re:

2011-07-28 Thread Rajeshwar Patra
@nitish try removing the static keyword and then re-run the program alwayz it gives a 0 but without it,it gives a number -- 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

Re: [algogeeks] Re:

2011-07-28 Thread Rajeshwar Patra
@Aditi @kamakshii The output is compiler dependent but the static part is hard to understand... -- 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,

Re: [algogeeks] question

2011-07-28 Thread Rajeshwar Patra
just perform the xor operation on A and B the number of 1's give the no of bits required... Correct me if i am wrong -- 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

[algogeeks]

2011-07-25 Thread Rajeshwar Patra
What is the most efficient way of taking lines of test inputs from the user ... Kindly explain -- 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,