Thread: confused

  1. #1
    Registered User
    Join Date
    Mar 2002
    Posts
    12

    confused

    I'm confused; I signed up for a C programming class, and my instructuor goes too fast. I have an assighnemt due, and I have no idea idea how to do it. Can anyone pls help. I'll appreciate it.

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    The first thing to do in this situation is to ask your instructor to slow down. If you'd like to tell us the assignment we'll help you to understand it.

    -Prelude
    My best code is written with the delete key.

  3. #3
    Registered User
    Join Date
    Feb 2002
    Posts
    11

    for

    for(i=1; i<=limit; i++)
    {

    tot += (1*1) + (1*2) + (1*2*3) + (1*2*3*4) + (limit-1)
    =
    (4-1)
    = (1*2*3)
    }

  4. #4
    ....
    Join Date
    Aug 2001
    Location
    Groningen (NL)
    Posts
    2,380
    Poorman, what's this?

  5. #5
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    oo, oo, my turn!

    Code:
    for(a=0;a+2 != 4;a++)
    {
     a = a + 0;
    }
    Wow, useless code sure is fun!

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Confused with array size
    By desmond5 in forum C Programming
    Replies: 4
    Last Post: 12-04-2007, 05:14 PM
  2. New to C++ and confused by boolean and ifs and else
    By jconner in forum C++ Programming
    Replies: 10
    Last Post: 08-02-2006, 03:29 AM
  3. So Now Im getting confused?!?!?
    By zergdeath1 in forum C++ Programming
    Replies: 11
    Last Post: 03-06-2004, 05:41 PM
  4. confused.. in selecting my line of deapth
    By jawwadalam in forum A Brief History of Cprogramming.com
    Replies: 4
    Last Post: 05-04-2003, 01:21 PM
  5. Extern Question, really confused
    By SourceCode in forum C Programming
    Replies: 10
    Last Post: 03-26-2003, 11:11 PM