Search:

Type: Posts; User: kashikoi

Search: Search took 0.01 seconds.

  1. Thread: e3 expo

    by kashikoi
    Replies
    37
    Views
    7,017

    i was at e3 today (i know someone who works for...

    i was at e3 today (i know someone who works for ign). the half-life 2 presentations blew me away, but i was expecting that. doom3 looked pretty killer on xbox, can't wait to see that game on an...
  2. Replies
    3
    Views
    12,308

    the "-l" is a flag for the compiler telling it to...

    the "-l" is a flag for the compiler telling it to link something. i'm guessing the "m" is for the math library.

    try putting an "-lm" in "trial". example:

    trial: test.o readinput.o...
  3. Replies
    3
    Views
    12,308

    are you using gcc or g++? make sure to link...

    are you using gcc or g++?

    make sure to link the math lib too with "-lm". for example if your source file is test.c:

    gcc test.c -lm
  4. Replies
    3
    Views
    1,020

    you are also declaring a local "answer" so your...

    you are also declaring a local "answer" so your output will always be 1 (the value of answer local to main). remove the "int"s within that while loop and you should be fine.
  5. Replies
    3
    Views
    1,020

    you are declaring a local 'x' within that while...

    you are declaring a local 'x' within that while loop.
  6. Replies
    34
    Views
    8,000

    number theory is great. so amazing that you can...

    number theory is great. so amazing that you can discover all sorts of complex patterns and theories from something as "simple" as numbers. and yes, calculus rocks.
Results 1 to 6 of 6