Forum: C Oct 5th, 2007 |
| Replies: 11 Views: 3,066 Ok I'm not too sure. But this might have something to do with dependancy. Is there more than 1 makefile in your download?
One of Dev-C++ shortfalls is it can't compile multiple projects all at... |
Forum: C Oct 5th, 2007 |
| Replies: 11 Views: 3,066 DEV C++ compiles C or C++ just fine. What is the reported error ?
The links you posted give me a 404 page not found error. |
Forum: C Aug 30th, 2007 |
| Replies: 17 Views: 2,257 It works but it is platform dependant and incurrs a lot more overhead than getchar(). Most C/C++ developers of any ilk will tell you not to use system("pause").
If you search on this site or using... |
Forum: C Aug 29th, 2007 |
| Replies: 17 Views: 2,257 I'd like to know more about why this is better. I understand the fflush to force the buffered printf output to the screen immediately. But why the cast to void for getchar's return value? Does this... |
Forum: C Aug 21st, 2007 |
| Replies: 11 Views: 1,775 Read Hamrick's earlier post it's far more elloquent. Where Hamrick talks about the stack pointer moving down to reach the return value of the function. Therefore, all the local variables that were... |
Forum: C Aug 21st, 2007 |
| Replies: 11 Views: 1,775 Ah thanks Ancient Dragon now we know. |
Forum: C Aug 21st, 2007 |
| Replies: 11 Views: 1,775 I haven't programmed a lot of C but to the best of my knowledge:
unsigned char ucBufr = NULL;
1. This is not a null pointer, it's a char variable (1 byte set to 0).
>I know that after... |