show/hide this revision's text 2 added 125 characters in body

Here's an opinion from someone who used C for years in biomedical research: image processing, data crunching. IMHO, C is a major intellectual achievement, probably the finest distillation of intent into syntax. I would learn C again now, if I were starting out, even if just for the purpose of learning to think.

That said, I have never even attempted to program in C on MS. (All my work was on Suns and SGIs.) To avoid the overhead mentioned in other answers, I have switched to Python on MS XP/cygwin. However, I miss C's terse, expressive syntax rather often, and I miss mucking about with bits and values as stored in memory. Note that even with Python, the back-end is C, and custom extensions are coded in C. Thus, if I wanted to redo my image processing code for Python, I probably would wind up writing C after all.

Sorry that MS imposes such a burden on writing in about the leanest language ever invented. (BTW, as for editors, my personal choice is vim (as gvim), not IDEs.) (Have you thought of setting up a Linux box? Lots to be said for that these days: UNIX without the cost of workstations.)

show/hide this revision's text 1

Here's an opinion from someone who used C for years in biomedical research: image processing, data crunching. IMHO, C is a major intellectual achievement, probably the finest distillation of intent into syntax. I would learn C again now, if I were starting out, even if just for the purpose of learning to think.

That said, I have never even attempted to program in C on MS. (All my work was on Suns and SGIs.) To avoid the overhead mentioned in other answers, I have switched to Python on MS XP/cygwin. However, I miss C's terse, expressive syntax rather often, and I miss mucking about with bits and values as stored in memory. Note that even with Python, the back-end is C, and custom extensions are coded in C. Thus, if I wanted to redo my image processing code for Python, I probably would wind up writing C after all.

Sorry that MS imposes such a burden on writing in about the leanest language ever invented. (BTW, as for editors, my personal choice is vim (as gvim), not IDEs.)