Thread: check out this tutorial plz...even experts

  1. #1
    Registered User
    Join Date
    Sep 2005
    Posts
    46

    check out this tutorial plz...even experts

    While i was searching for a good tutorials(after finishing the one on this site)...i found a site with links to lots of tutorials and it said that this is the best on the net...can u plz check out the exercises for every section because i tried to solve them but the strange thing is that in order to solve them you have to know further sections....for examples the first section in declarations there;s a questions that needs using if ....in the looping section....some examples need using arrays while the arrays section are explained after these exercises.

    http://www.cs.cf.ac.uk/Dave/C/

  2. #2
    Frequently Quite Prolix dwks's Avatar
    Join Date
    Apr 2005
    Location
    Canada
    Posts
    8,057
    It looks pretty old: http://www.cs.cf.ac.uk/Dave/C/sectio...00000000000000
    Code:
    #include <stdio.h>
    
    char char1;     /* first character */
    char char2;     /* second character */
    char char3;     /* third character */
    
    main()
    {
        char1 = 'A';
        char2 = 'B';
        char3 = 'C';
        (void)printf("%c%c%c reversed is %c%c%c\n",
            char1, char2, char3,
            char3, char2, char1);
        return (0);
    }
    Try this site's tutorials or get a book.
    dwk

    Seek and ye shall find. quaere et invenies.

    "Simplicity does not precede complexity, but follows it." -- Alan Perlis
    "Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
    "The only real mistake is the one from which we learn nothing." -- John Powell


    Other boards: DaniWeb, TPS
    Unofficial Wiki FAQ: cpwiki.sf.net

    My website: http://dwks.theprogrammingsite.com/
    Projects: codeform, xuni, atlantis, nort, etc.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. LibBZip2 tutorial search trouble
    By Chris87 in forum C Programming
    Replies: 3
    Last Post: 04-29-2010, 06:55 AM
  2. My new website
    By joeprogrammer in forum A Brief History of Cprogramming.com
    Replies: 19
    Last Post: 03-17-2006, 07:38 PM
  3. Replies: 5
    Last Post: 01-25-2006, 09:53 PM
  4. Seg Fault -- Plz Help Quick
    By djwicks in forum C Programming
    Replies: 1
    Last Post: 04-10-2005, 09:08 AM
  5. Cprog tutorial: Design Patterns
    By maes in forum C++ Programming
    Replies: 7
    Last Post: 10-11-2004, 01:41 AM