Thread: what MATHS Do I need When Starting C

  1. #1
    Registered User
    Join Date
    Oct 2011
    Posts
    1

    what MATHS Do I need When Starting C

    what MATHS Do I need When Starting C

  2. #2
    Registered User
    Join Date
    Sep 2007
    Posts
    1,012
    None.

    I suppose you probably should know basic arithmetic, but you don't need any specialized math knowledge to begin programming.

  3. #3
    Programming Wraith GReaper's Avatar
    Join Date
    Apr 2009
    Location
    Greece
    Posts
    2,738
    Writing a "Hello World" program needs no math, but if you want to do some real programming, you will have to know or learn about basic arithmetics( +, -, *, / ), logic arithmetics( !, &&, || ), relations( >, >=, <, <=, ==, != ), bitwise operations( ~, ^, &, |, <<, >>) and of course assignment( = and compound like +=, -=, etc ). You will have to know how to use parenthesis to prioritise your operations. Also to know the rounding method of C/C++ on numbers is essential.

    Those are the basics. If you need anything else, "#include <math.h>"
    Devoted my life to programming...

  4. #4
    Registered User
    Join Date
    Sep 2011
    Location
    Athens , Greece
    Posts
    357
    Quote Originally Posted by JOHNDIGINEE View Post
    what MATHS Do I need When Starting C
    So for your starting , you should know basic mathematics such as multiplication and the other basic actions of arithmetic.

    After that it depends on the algorithm whom you want to implement!
    If you want to implement cryptography you should read about numbers theory. Good Luck

    Mr. Lnx

  5. #5
    Registered User
    Join Date
    Sep 2011
    Posts
    111
    Quote Originally Posted by JOHNDIGINEE View Post
    what MATHS Do I need When Starting C
    Most schools want you to know and have a solid handle on algebra (basic), prior to starting to program, at the college level.

    As you advance in programming you will get more and more math, to the point where your level of math will be on par with a math minor. Most programming degree fields have people, past Calc 3, and into Linear Algebra and Differential Equations. Some people will argue that you do not need the highly advanced mathematics for a general programming job.

  6. #6
    ATH0 quzah's Avatar
    Join Date
    Oct 2001
    Posts
    14,826
    You need to know when to add, and when to subtract.

    Also, when to walk away, and when to run.


    Quzah.
    Hope is the first step on the road to disappointment.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. maths and c++
    By mkeisu in forum C++ Programming
    Replies: 11
    Last Post: 05-19-2008, 03:59 PM
  2. Maths in C
    By username101 in forum C Programming
    Replies: 16
    Last Post: 05-09-2008, 08:51 AM
  3. Maths
    By AcerN30 in forum A Brief History of Cprogramming.com
    Replies: 7
    Last Post: 05-03-2008, 01:13 PM
  4. Help with maths
    By Coritani in forum C++ Programming
    Replies: 11
    Last Post: 11-14-2006, 09:36 AM
  5. More Maths :(
    By (TNT) in forum A Brief History of Cprogramming.com
    Replies: 3
    Last Post: 01-20-2002, 10:39 AM