Forum: C Dec 12th, 2006 |
| Replies: 13 Views: 2,301 Which is good, of course, in case some odd operating system decides that 74 is a good value to indicate success, and that 0 will be failure. |
Forum: C Dec 7th, 2006 |
| Replies: 7 Views: 3,093 I'm not so sure. C can be easy, but some features require a lot of study to master. I'm not saying it is a diffucult language, but neither is it simple. I think the OP was referencing it to, say,... |
Forum: C Dec 7th, 2006 |
| Replies: 7 Views: 3,093 Just one point: C is not a simple language. Also, your poll makes no sense. |
Forum: C Nov 29th, 2006 |
| Replies: 1 Views: 20,050 1) This void main()
Should be int main( void )
2)Try to eliminate the nonstandard functions. |
Forum: C Nov 24th, 2006 |
| Replies: 3 Views: 1,846 It would be nearly imposible to reconstruct C code as all compilers will compile it slightly different. Also, the same compiler might do it differently twice. |
Forum: C Nov 22nd, 2006 |
| Replies: 8 Views: 8,376 Main really should have a type: int main ( void ) |
Forum: C Nov 12th, 2006 |
| Replies: 2 Views: 1,686 |
Forum: C Nov 10th, 2006 |
| Replies: 5 Views: 1,011 They are useful to organize large projects, often with over 100 files. It is easy to have them all in one organized list rather than scattered all over the folder. |