Infinite loop in C
furconit.wordpress.com
Infinite loop in C
1–5 of 5 posts
Re: Infinite loop in C
#2First off counter is of type static int. not unsigned int like the article says. Secondly j is decremented, j isn't even defined.
They are however right that it most likely will crash due to an overflow problem. Though this is not necessarily true.
Re: Infinite loop in C
#3Re: Infinite loop in C
#4There are so many things wrong with that code its not even funny... First off counter is of type static int. not unsigned int like the article says. Secondly j is decremented, j isn't even defined. They are however right that it most likely will crash due to an overflow problem. Though this is not necessarily true.
Also, I see no reason why it would crash. Once it gets to the max value, incrementing would return some other value but I've never seen C produce a runtime error for an integer overflow.
Re: Infinite loop in C
#5There are so many things wrong with that code its not even funny... First off counter is of type static int. not unsigned int like the article says. Secondly j is decremented, j isn't even defined. They are however right that it most likely will crash due to an overflow problem. Though this is not necessarily true.
"int" is signed unless you specify "unsigned". So "static int" would be a signed int that is also static. Also, I see no reason why it would crash. Once it gets to the max value, incrementing would return some other value but I've never seen C produce a runtime error for an integer overflow.