Forum: C Oct 14th, 2009 |
| Replies: 4 Views: 413 Even more peculiar is have the E in 'ecake' disappears, what a mystery! :icon_lol: |
Forum: C Oct 13th, 2009 |
| Replies: 6 Views: 310 I think first you need to simplify, so as that you can clearly follow and read it. For instance: that whole if(hexstring[i+2]==10 through 15) and then ending it with a redundantly unnecessary else... |
Forum: C Aug 6th, 2009 |
| Replies: 13 Views: 816 The only times it should ever be used are of the most rarest situations.
So don't get any ideals about using in substitution of well planned logic. |
Forum: C Aug 4th, 2009 |
| Replies: 15 Views: 923 Don't use goto, try a function. You already have a switch in an if statement, don't make it any more complex.
Avoid fflush() and look into a replacement of scanf() |
Forum: C Jun 24th, 2009 |
| Replies: 3 Views: 289 conio.h isn't used, and should never be.
Macros used like that are dangerous.
It's: int main() { return(0); } |
Forum: C May 14th, 2009 |
| Replies: 1 Views: 384 You mean those format things: http://www.cplusplus.com/reference/clibrary/cstdio/printf/ |
Forum: C May 13th, 2009 |
| Replies: 9 Views: 1,122 It doesn't work because you're using nonstandard code written for ancient compilers.
conio.h should be removed from your code.
main() by standard requires a return value(except in very rare... |
Forum: C May 1st, 2009 |
| Replies: 5 Views: 1,314 What is with all the Turbo C++ references?!! That compiler is a non-standard relic from another millennial! It's useless! |
Forum: C Apr 20th, 2009 |
| Replies: 9 Views: 1,237 marco93 is just a bot that's managed to strangely survive for so long. |
Forum: C Jan 26th, 2009 |
| Replies: 8 Views: 908 Google, "rot13" That's as easy as it gets... well, actually using bit-operations are easier by a few lines less typed. |