Re: [algogeeks] Re: reason?????????

2011-08-02 Thread jagrati verma
thanks it really helpd me a lot.

On Tue, Aug 2, 2011 at 3:16 AM, Dharmendra Modi 
dharmendra.modi...@gmail.com wrote:

 The first part initialization of for loop (i=5  i=-1) is just an
 initialization and nothing else. It is of no use in this case.

 The second part condition holds the condition which is in this case +
 +i specifying to run loop till i is non zero. You are using prefix
 operator hence it will first increment i and then test.
 If you have used i++ the loop wont even have executed single time.

 The condition ++i becomes zero when there is round of short and you
 get zero at that time the loop terminates.

 The format specifier for unsigned int is used hence positive values
 are printed.
 If the format specifier for %d is used then the results would be more
 informative.

 Hope that helps.

 On Aug 1, 11:51 pm, jagrati verma jagrativermamn...@gmail.com wrote:
  #includestdio.h
  main()
  {
  short int i=0;
  for(i=5  i=-1;++i;i0)
  printf(%u\n,i);
  printf(\n);
  return 0;}
 
 o/p is 1.
  4294967295 hw???

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.



-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: reason?????????

2011-08-01 Thread Dharmendra Modi
The first part initialization of for loop (i=5  i=-1) is just an
initialization and nothing else. It is of no use in this case.

The second part condition holds the condition which is in this case +
+i specifying to run loop till i is non zero. You are using prefix
operator hence it will first increment i and then test.
If you have used i++ the loop wont even have executed single time.

The condition ++i becomes zero when there is round of short and you
get zero at that time the loop terminates.

The format specifier for unsigned int is used hence positive values
are printed.
If the format specifier for %d is used then the results would be more
informative.

Hope that helps.

On Aug 1, 11:51 pm, jagrati verma jagrativermamn...@gmail.com wrote:
 #includestdio.h
 main()
 {
 short int i=0;
 for(i=5  i=-1;++i;i0)
 printf(%u\n,i);
 printf(\n);
 return 0;}

                                                            o/p is 1.
 4294967295 hw???

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: reason?????????

2011-08-01 Thread Dipankar Patro
1. When you are using %u, it is for unsigned printing.

2. looking at the loop, it will run for only values of i
for(i=5  i=-1;++i;i0)
^^ the first statement here is not the conditional one.

3. since int is of 4 bytes on your system, the max positive value it will
print is power(2, 32) - 1. (4 bytes = 32 bits)

if suppose you used unsigned int, then that would have been an infinite
loop. since the condition is i=-1. each time you incremented the value of i
, it would have been between (0, 2^64-1) only.


On 2 August 2011 03:16, Dharmendra Modi dharmendra.modi...@gmail.comwrote:

 The first part initialization of for loop (i=5  i=-1) is just an
 initialization and nothing else. It is of no use in this case.

 The second part condition holds the condition which is in this case +
 +i specifying to run loop till i is non zero. You are using prefix
 operator hence it will first increment i and then test.
 If you have used i++ the loop wont even have executed single time.

 The condition ++i becomes zero when there is round of short and you
 get zero at that time the loop terminates.

 The format specifier for unsigned int is used hence positive values
 are printed.
 If the format specifier for %d is used then the results would be more
 informative.

 Hope that helps.

 On Aug 1, 11:51 pm, jagrati verma jagrativermamn...@gmail.com wrote:
  #includestdio.h
  main()
  {
  short int i=0;
  for(i=5  i=-1;++i;i0)
  printf(%u\n,i);
  printf(\n);
  return 0;}
 
 o/p is 1.
  4294967295 hw???

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
___

Please do not print this e-mail until urgent requirement. Go Green!!
Save Papers = Save Trees

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Reason for banning

2011-07-06 Thread Sanket
Thanks for the reply Shady.
I was hoping that the moderator who banned me gets a chance to reply
since I am pretty sure I have done neither of these knowingly -
advertising kind of mails, or abusive mails, spamming.
The only way this might have happened is if my account got hacked so
if that was the case, I would like to know in order to take preventive
actions and the only way to confirm this is by knowing what caused the
ban.

On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
 only reason why any of the moderators must have banned you is either for
 advertising kind of mails, or abusive mails, spamming..

 I hope I get a reply to this instead of this ID also getting banned oh
 come on there must have been something that got you banned, anyway you are
 not banned anymore. :)



 On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com wrote:
  Hi,

  I was using a different ID for browsing and commenting on this group
  but since yesterday, I am getting a notification that the moderator
  has banned me from using this group. I wanted to know the reason why I
  was banned and whether this was in error because I don't remember
  doing anything which would warrant being banend. All I did was comment
  with solutions to problems posted by other group members - in case a
  spam mail went out from my account, kindly let me know. My email id
  which was banned was vasa.san...@gmail.com

  I hope I get a reply to this instead of this ID also getting banned
  because I really valued being part of this group and learning from the
  informative discussions that it provides.

  --
  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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -

 - Show quoted text -

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread Arpit Sood
it is fine... :)
in case of any complaint, suggestion please mail me i am one of the
moderator... and one request from my side please don't discuss errors in
code, like why is it giving WA, SIGSEV etc. concentrate on algorithms :D

and Advertising, Spamming, Off-Topic posts will lead to banning of the
member

Happy coding

Shady

On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:

 Thanks for the reply Shady.
 I was hoping that the moderator who banned me gets a chance to reply
 since I am pretty sure I have done neither of these knowingly -
 advertising kind of mails, or abusive mails, spamming.
 The only way this might have happened is if my account got hacked so
 if that was the case, I would like to know in order to take preventive
 actions and the only way to confirm this is by knowing what caused the
 ban.

 On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
  only reason why any of the moderators must have banned you is either for
  advertising kind of mails, or abusive mails, spamming..
 
  I hope I get a reply to this instead of this ID also getting banned oh
  come on there must have been something that got you banned, anyway you
 are
  not banned anymore. :)
 
 
 
  On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com wrote:
   Hi,
 
   I was using a different ID for browsing and commenting on this group
   but since yesterday, I am getting a notification that the moderator
   has banned me from using this group. I wanted to know the reason why I
   was banned and whether this was in error because I don't remember
   doing anything which would warrant being banend. All I did was comment
   with solutions to problems posted by other group members - in case a
   spam mail went out from my account, kindly let me know. My email id
   which was banned was vasa.san...@gmail.com
 
   I hope I get a reply to this instead of this ID also getting banned
   because I really valued being part of this group and learning from the
   informative discussions that it provides.
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
 
  - Show quoted text -

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
Regards,
Arpit Sood

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread shady
some new moderators are sanket, arpit, sunny, piyush

On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com wrote:

 it is fine... :)
 in case of any complaint, suggestion please mail me i am one of the
 moderator... and one request from my side please don't discuss errors in
 code, like why is it giving WA, SIGSEV etc. concentrate on algorithms :D

 and Advertising, Spamming, Off-Topic posts will lead to banning of the
 member

 Happy coding

 Shady

 On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:

 Thanks for the reply Shady.
 I was hoping that the moderator who banned me gets a chance to reply
 since I am pretty sure I have done neither of these knowingly -
 advertising kind of mails, or abusive mails, spamming.
 The only way this might have happened is if my account got hacked so
 if that was the case, I would like to know in order to take preventive
 actions and the only way to confirm this is by knowing what caused the
 ban.

 On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
  only reason why any of the moderators must have banned you is either for
  advertising kind of mails, or abusive mails, spamming..
 
  I hope I get a reply to this instead of this ID also getting banned oh
  come on there must have been something that got you banned, anyway you
 are
  not banned anymore. :)
 
 
 
  On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com wrote:
   Hi,
 
   I was using a different ID for browsing and commenting on this group
   but since yesterday, I am getting a notification that the moderator
   has banned me from using this group. I wanted to know the reason why I
   was banned and whether this was in error because I don't remember
   doing anything which would warrant being banend. All I did was comment
   with solutions to problems posted by other group members - in case a
   spam mail went out from my account, kindly let me know. My email id
   which was banned was vasa.san...@gmail.com
 
   I hope I get a reply to this instead of this ID also getting banned
   because I really valued being part of this group and learning from the
   informative discussions that it provides.
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
 
  - Show quoted text -

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards,
 Arpit Sood

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread shady
lol, arpit you have just joined, lol

On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:

 some new moderators are sanket, arpit, sunny, piyush


 On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com wrote:

 it is fine... :)
 in case of any complaint, suggestion please mail me i am one of the
 moderator... and one request from my side please don't discuss errors in
 code, like why is it giving WA, SIGSEV etc. concentrate on algorithms :D

 and Advertising, Spamming, Off-Topic posts will lead to banning of the
 member

 Happy coding

 Shady

 On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:

 Thanks for the reply Shady.
 I was hoping that the moderator who banned me gets a chance to reply
 since I am pretty sure I have done neither of these knowingly -
 advertising kind of mails, or abusive mails, spamming.
 The only way this might have happened is if my account got hacked so
 if that was the case, I would like to know in order to take preventive
 actions and the only way to confirm this is by knowing what caused the
 ban.

 On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
  only reason why any of the moderators must have banned you is either
 for
  advertising kind of mails, or abusive mails, spamming..
 
  I hope I get a reply to this instead of this ID also getting banned
 oh
  come on there must have been something that got you banned, anyway you
 are
  not banned anymore. :)
 
 
 
  On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com wrote:
   Hi,
 
   I was using a different ID for browsing and commenting on this group
   but since yesterday, I am getting a notification that the moderator
   has banned me from using this group. I wanted to know the reason why
 I
   was banned and whether this was in error because I don't remember
   doing anything which would warrant being banend. All I did was
 comment
   with solutions to problems posted by other group members - in case a
   spam mail went out from my account, kindly let me know. My email id
   which was banned was vasa.san...@gmail.com
 
   I hope I get a reply to this instead of this ID also getting banned
   because I really valued being part of this group and learning from
 the
   informative discussions that it provides.
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
 
  - Show quoted text -

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards,
 Arpit Sood

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



[algogeeks] Re: Reason for banning

2011-07-06 Thread Sanket
Arpit, is it possible to remove the ban from my other email id? I
would like to use that email address for activities on this group...

On Jul 6, 11:16 am, shady sinv...@gmail.com wrote:
 lol, arpit you have just joined, lol



 On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:
  some new moderators are sanket, arpit, sunny, piyush

  On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com wrote:

  it is fine... :)
  in case of any complaint, suggestion please mail me i am one of the
  moderator... and one request from my side please don't discuss errors 
  in
  code, like why is it giving WA, SIGSEV etc. concentrate on algorithms 
  :D

  and Advertising, Spamming, Off-Topic posts will lead to banning of the
  member

  Happy coding

  Shady

  On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:

  Thanks for the reply Shady.
  I was hoping that the moderator who banned me gets a chance to reply
  since I am pretty sure I have done neither of these knowingly -
  advertising kind of mails, or abusive mails, spamming.
  The only way this might have happened is if my account got hacked so
  if that was the case, I would like to know in order to take preventive
  actions and the only way to confirm this is by knowing what caused the
  ban.

  On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
   only reason why any of the moderators must have banned you is either
  for
   advertising kind of mails, or abusive mails, spamming..

   I hope I get a reply to this instead of this ID also getting banned
  oh
   come on there must have been something that got you banned, anyway you
  are
   not banned anymore. :)

   On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com wrote:
Hi,

I was using a different ID for browsing and commenting on this group
but since yesterday, I am getting a notification that the moderator
has banned me from using this group. I wanted to know the reason why
  I
was banned and whether this was in error because I don't remember
doing anything which would warrant being banend. All I did was
  comment
with solutions to problems posted by other group members - in case a
spam mail went out from my account, kindly let me know. My email id
which was banned was vasa.san...@gmail.com

I hope I get a reply to this instead of this ID also getting banned
because I really valued being part of this group and learning from
  the
informative discussions that it provides.

--
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, visit this group at
   http://groups.google.com/group/algogeeks?hl=en.-Hide quoted text -

   - Show quoted text -

  --
  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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

  --
  Regards,
  Arpit Sood

  --
  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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -

 - Show quoted text -

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread Arpit Sood
he made me as well as you moderator just now. what is your banned id ? I
don't think any of your ids is banned now

On Wed, Jul 6, 2011 at 10:04 PM, Sanket sanku.v...@gmail.com wrote:

 Arpit, is it possible to remove the ban from my other email id? I
 would like to use that email address for activities on this group...

 On Jul 6, 11:16 am, shady sinv...@gmail.com wrote:
  lol, arpit you have just joined, lol
 
 
 
  On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:
   some new moderators are sanket, arpit, sunny, piyush
 
   On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com
 wrote:
 
   it is fine... :)
   in case of any complaint, suggestion please mail me i am one of
 the
   moderator... and one request from my side please don't discuss
 errors in
   code, like why is it giving WA, SIGSEV etc. concentrate on
 algorithms :D
 
   and Advertising, Spamming, Off-Topic posts will lead to banning of the
   member
 
   Happy coding
 
   Shady
 
   On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:
 
   Thanks for the reply Shady.
   I was hoping that the moderator who banned me gets a chance to reply
   since I am pretty sure I have done neither of these knowingly -
   advertising kind of mails, or abusive mails, spamming.
   The only way this might have happened is if my account got hacked so
   if that was the case, I would like to know in order to take
 preventive
   actions and the only way to confirm this is by knowing what caused
 the
   ban.
 
   On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
only reason why any of the moderators must have banned you is
 either
   for
advertising kind of mails, or abusive mails, spamming..
 
I hope I get a reply to this instead of this ID also getting
 banned
   oh
come on there must have been something that got you banned, anyway
 you
   are
not banned anymore. :)
 
On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com
 wrote:
 Hi,
 
 I was using a different ID for browsing and commenting on this
 group
 but since yesterday, I am getting a notification that the
 moderator
 has banned me from using this group. I wanted to know the reason
 why
   I
 was banned and whether this was in error because I don't remember
 doing anything which would warrant being banend. All I did was
   comment
 with solutions to problems posted by other group members - in
 case a
 spam mail went out from my account, kindly let me know. My email
 id
 which was banned was vasa.san...@gmail.com
 
 I hope I get a reply to this instead of this ID also getting
 banned
 because I really valued being part of this group and learning
 from
   the
 informative discussions that it provides.
 
 --
 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, visit this group at
http://groups.google.com/group/algogeeks?hl=en.-Hide quoted text
 -
 
- Show quoted text -
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
   --
   Regards,
   Arpit Sood
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
 
  - Show quoted text -

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




-- 
Regards,
Arpit Sood

-- 
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, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.



Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread shady
none of ur ids are banned

On Wed, Jul 6, 2011 at 10:55 PM, Arpit Sood soodfi...@gmail.com wrote:

 he made me as well as you moderator just now. what is your banned id ? I
 don't think any of your ids is banned now


 On Wed, Jul 6, 2011 at 10:04 PM, Sanket sanku.v...@gmail.com wrote:

 Arpit, is it possible to remove the ban from my other email id? I
 would like to use that email address for activities on this group...

 On Jul 6, 11:16 am, shady sinv...@gmail.com wrote:
  lol, arpit you have just joined, lol
 
 
 
  On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:
   some new moderators are sanket, arpit, sunny, piyush
 
   On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com
 wrote:
 
   it is fine... :)
   in case of any complaint, suggestion please mail me i am one of
 the
   moderator... and one request from my side please don't discuss
 errors in
   code, like why is it giving WA, SIGSEV etc. concentrate on
 algorithms :D
 
   and Advertising, Spamming, Off-Topic posts will lead to banning of
 the
   member
 
   Happy coding
 
   Shady
 
   On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:
 
   Thanks for the reply Shady.
   I was hoping that the moderator who banned me gets a chance to reply
   since I am pretty sure I have done neither of these knowingly -
   advertising kind of mails, or abusive mails, spamming.
   The only way this might have happened is if my account got hacked so
   if that was the case, I would like to know in order to take
 preventive
   actions and the only way to confirm this is by knowing what caused
 the
   ban.
 
   On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
only reason why any of the moderators must have banned you is
 either
   for
advertising kind of mails, or abusive mails, spamming..
 
I hope I get a reply to this instead of this ID also getting
 banned
   oh
come on there must have been something that got you banned, anyway
 you
   are
not banned anymore. :)
 
On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com
 wrote:
 Hi,
 
 I was using a different ID for browsing and commenting on this
 group
 but since yesterday, I am getting a notification that the
 moderator
 has banned me from using this group. I wanted to know the reason
 why
   I
 was banned and whether this was in error because I don't
 remember
 doing anything which would warrant being banend. All I did was
   comment
 with solutions to problems posted by other group members - in
 case a
 spam mail went out from my account, kindly let me know. My email
 id
 which was banned was vasa.san...@gmail.com
 
 I hope I get a reply to this instead of this ID also getting
 banned
 because I really valued being part of this group and learning
 from
   the
 informative discussions that it provides.
 
 --
 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, visit this group at
http://groups.google.com/group/algogeeks?hl=en.-Hide quoted text
 -
 
- Show quoted text -
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.
 
   --
   Regards,
   Arpit Sood
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.- Hide quoted text -
 
  - Show quoted text -

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.




 --
 Regards,
 Arpit Sood

 --
 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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Algorithm Geeks group.
To post to this group, send 

[algogeeks] Re: Reason for banning

2011-07-06 Thread Sanket
I am able to access the posts using my other email Id, thanks for the
help.

On Jul 6, 12:37 pm, shady sinv...@gmail.com wrote:
 none of ur ids are banned



 On Wed, Jul 6, 2011 at 10:55 PM, Arpit Sood soodfi...@gmail.com wrote:
  he made me as well as you moderator just now. what is your banned id ? I
  don't think any of your ids is banned now

  On Wed, Jul 6, 2011 at 10:04 PM, Sanket sanku.v...@gmail.com wrote:

  Arpit, is it possible to remove the ban from my other email id? I
  would like to use that email address for activities on this group...

  On Jul 6, 11:16 am, shady sinv...@gmail.com wrote:
   lol, arpit you have just joined, lol

   On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:
some new moderators are sanket, arpit, sunny, piyush

On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com
  wrote:

it is fine... :)
in case of any complaint, suggestion please mail me i am one of
  the
moderator... and one request from my side please don't discuss
  errors in
code, like why is it giving WA, SIGSEV etc. concentrate on
  algorithms :D

and Advertising, Spamming, Off-Topic posts will lead to banning of
  the
member

Happy coding

Shady

On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com wrote:

Thanks for the reply Shady.
I was hoping that the moderator who banned me gets a chance to reply
since I am pretty sure I have done neither of these knowingly -
advertising kind of mails, or abusive mails, spamming.
The only way this might have happened is if my account got hacked so
if that was the case, I would like to know in order to take
  preventive
actions and the only way to confirm this is by knowing what caused
  the
ban.

On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
 only reason why any of the moderators must have banned you is
  either
for
 advertising kind of mails, or abusive mails, spamming..

 I hope I get a reply to this instead of this ID also getting
  banned
oh
 come on there must have been something that got you banned, anyway
  you
are
 not banned anymore. :)

 On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com
  wrote:
  Hi,

  I was using a different ID for browsing and commenting on this
  group
  but since yesterday, I am getting a notification that the
  moderator
  has banned me from using this group. I wanted to know the reason
  why
I
  was banned and whether this was in error because I don't
  remember
  doing anything which would warrant being banend. All I did was
comment
  with solutions to problems posted by other group members - in
  case a
  spam mail went out from my account, kindly let me know. My email
  id
  which was banned was vasa.san...@gmail.com

  I hope I get a reply to this instead of this ID also getting
  banned
  because I really valued being part of this group and learning
  from
the
  informative discussions that it provides.

  --
  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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.-Hidequoted text
  -

 - Show quoted text -

--
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, visit this group at
   http://groups.google.com/group/algogeeks?hl=en.

--
Regards,
Arpit Sood

--
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, visit this group at
   http://groups.google.com/group/algogeeks?hl=en.-Hide quoted text -

   - Show quoted text -

  --
  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, visit this group at
 http://groups.google.com/group/algogeeks?hl=en.

  --
  Regards,
  Arpit Sood

  --
  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
  

Re: [algogeeks] Re: Reason for banning

2011-07-06 Thread shady
i have made you moderator sanket, you can even ban me now. :D

On Thu, Jul 7, 2011 at 1:20 AM, Sanket sanku.v...@gmail.com wrote:

 I am able to access the posts using my other email Id, thanks for the
 help.

 On Jul 6, 12:37 pm, shady sinv...@gmail.com wrote:
  none of ur ids are banned
 
 
 
  On Wed, Jul 6, 2011 at 10:55 PM, Arpit Sood soodfi...@gmail.com wrote:
   he made me as well as you moderator just now. what is your banned id ?
 I
   don't think any of your ids is banned now
 
   On Wed, Jul 6, 2011 at 10:04 PM, Sanket sanku.v...@gmail.com wrote:
 
   Arpit, is it possible to remove the ban from my other email id? I
   would like to use that email address for activities on this group...
 
   On Jul 6, 11:16 am, shady sinv...@gmail.com wrote:
lol, arpit you have just joined, lol
 
On Wed, Jul 6, 2011 at 9:44 PM, shady sinv...@gmail.com wrote:
 some new moderators are sanket, arpit, sunny, piyush
 
 On Wed, Jul 6, 2011 at 9:41 PM, Arpit Sood soodfi...@gmail.com
   wrote:
 
 it is fine... :)
 in case of any complaint, suggestion please mail me i am one
 of
   the
 moderator... and one request from my side please don't
 discuss
   errors in
 code, like why is it giving WA, SIGSEV etc. concentrate on
   algorithms :D
 
 and Advertising, Spamming, Off-Topic posts will lead to banning
 of
   the
 member
 
 Happy coding
 
 Shady
 
 On Wed, Jul 6, 2011 at 9:11 PM, Sanket sanku.v...@gmail.com
 wrote:
 
 Thanks for the reply Shady.
 I was hoping that the moderator who banned me gets a chance to
 reply
 since I am pretty sure I have done neither of these knowingly
 -
 advertising kind of mails, or abusive mails, spamming.
 The only way this might have happened is if my account got
 hacked so
 if that was the case, I would like to know in order to take
   preventive
 actions and the only way to confirm this is by knowing what
 caused
   the
 ban.
 
 On Jul 6, 12:04 am, shady sinv...@gmail.com wrote:
  only reason why any of the moderators must have banned you is
   either
 for
  advertising kind of mails, or abusive mails, spamming..
 
  I hope I get a reply to this instead of this ID also getting
   banned
 oh
  come on there must have been something that got you banned,
 anyway
   you
 are
  not banned anymore. :)
 
  On Wed, Jul 6, 2011 at 2:41 AM, Sanket sanku.v...@gmail.com
   wrote:
   Hi,
 
   I was using a different ID for browsing and commenting on
 this
   group
   but since yesterday, I am getting a notification that the
   moderator
   has banned me from using this group. I wanted to know the
 reason
   why
 I
   was banned and whether this was in error because I don't
   remember
   doing anything which would warrant being banend. All I did
 was
 comment
   with solutions to problems posted by other group members -
 in
   case a
   spam mail went out from my account, kindly let me know. My
 email
   id
   which was banned was vasa.san...@gmail.com
 
   I hope I get a reply to this instead of this ID also getting
   banned
   because I really valued being part of this group and
 learning
   from
 the
   informative discussions that it provides.
 
   --
   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, visit this group at
  http://groups.google.com/group/algogeeks?hl=en.-Hidequotedtext
   -
 
  - Show quoted text -
 
 --
 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, visit this group at
http://groups.google.com/group/algogeeks?hl=en.
 
 --
 Regards,
 Arpit Sood
 
 --
 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, visit this group at
http://groups.google.com/group/algogeeks?hl=en.-Hide quoted text
 -
 
- Show quoted text -
 
   --
   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, visit this group at