Thread: C Coding

  1. #1
    Registered User hamsteroid's Avatar
    Join Date
    Mar 2007
    Location
    Waterford, Ireland
    Posts
    62

    C Coding

    Hi Folks,

    I'm pretty new to this board and I'm curious how long ye all have been programming in C for? Personally I did C programming back in College over 11 years ago in 1996 but I have not really touched it since 1998. A bit of shock of how time flies. Since then I have been using Oracle's SQLPLUS with Forms and Reports.
    I decided to revisit the C scene and I'm going back over the old notes. I'm amazed how I forgot so and how exact you needed to be when handling C. I'm going back over it for fun and to get to grips with it again.

    Questions I like to ask you guys is what do you use C for these days outside of work? Do you find it rewarding to create something out of nothing and progress it to something impressive?

    Back then I remember small little games like coreWars and playing with drawing the MandelBrot set? Another easy to master gem was making mazes and recursively finding your way out. I'd like to start doing that again. Back then, there wasn't much of an online community (outside of usenet) and it's endearing and refreshing to find a site like this.

  2. #2
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,656
    I use it all the time - at work and for the little "home" projects as well, especially for the embedded programming which I do from time to time on my AVR

    I also find it relaxing in some way to just take a small problem and just "do it" and see it all working without all the baggage of requirements, design and testing which are necessary for large work type projects.
    If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
    If at first you don't succeed, try writing your phone number on the exam paper.

  3. #3
    Its hard... But im here swgh's Avatar
    Join Date
    Apr 2005
    Location
    England
    Posts
    1,688
    I took a C course in college before moving on to C++ which I am now currently studying in University. If I code in my own time i create game apps and somtimes device large projects. I have been activley coding since I was 12, when I took an interest in the BASIC language for the old Acorn systems in school. You could press F12 and type in BASIC and you could create very simple programs. Sort of like this one

    Code:
    10 PRINT "HELLO THIS IS BASIC"
    20 "ENTER A NUMBER "
    30 INPUT A$
    40 PRINT "YOU ENTERED A$"
    50 ENDPROC
    60 END
    Ahh. memories...

    Nice to see how MS have evolved that into the visual Basic we see today.
    Double Helix STL

  4. #4
    Lean Mean Coding Machine KONI's Avatar
    Join Date
    Mar 2007
    Location
    Luxembourg, Europe
    Posts
    444
    I had the usual C course at university but from earlier experience, already knew pretty much everything. I read several C books to learn the language without actually using it much, never found a way to use it practically and back then, I found it too low level.

    I took up C again over 1 month ago and worked my way back into it. Since I have lots of experience with other languages and some very similar like Perl or PHP, it didn't take very long to learn the syntax and get a feeling for the language.

    At the moment I am preparing several courses on algorithms that I will give in 1 week and will use C as my language of choice for code samples and implementations. The courses will be for the Luxembourg delegation for the International Olympiad in Informatics which is in Croatia this year.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 9
    Last Post: 03-20-2009, 05:22 PM
  2. Coding Guideline ....!!
    By imfeelingfortun in forum Tech Board
    Replies: 8
    Last Post: 10-08-2006, 07:09 AM
  3. Before Coding
    By cyberCLoWn in forum C++ Programming
    Replies: 16
    Last Post: 12-15-2003, 02:26 AM
  4. Coding Contest....
    By Koshare in forum A Brief History of Cprogramming.com
    Replies: 46
    Last Post: 10-14-2001, 04:32 PM