Search:

Type: Posts; User: Gigabitten

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    4,451

    Thanks. That was unbelievably helpful. I see...

    Thanks. That was unbelievably helpful. I see where all those things can help. And, yeah. A bit dumb of me to fix one loop and not the other.

    Also, what warnings? I see your long list, but I'm...
  2. Replies
    6
    Views
    4,451

    Proper Format

    #include <stdio.h>
    #include <stdlib.h>
    #define LOOPNUM 42 //just a way to keep a loop going infinitely without a GOTO
    /***********************************************/
    /* The point of this...
  3. Replies
    4
    Views
    2,925

    Thanks. Nope, no rambling. And your 'while(1)'...

    Thanks. Nope, no rambling. And your 'while(1)' was pretty neat. Thanks. Also, I must say that the pointers in C still confuse me a bit. So, yeah. I'll fix those things mentioned and run with...
  4. Replies
    4
    Views
    2,925

    Console App Error

    Okay, so I made a console application that - since I'm a beginner - took me a total of 8 hours to make so that it is easily expansible and easily read. I think that this lives up to the standards. ...
  5. Replies
    4
    Views
    11,104

    Anything on pdf? Something that is not on one of...

    Anything on pdf? Something that is not on one of those filesharing sites, if possible.
  6. Replies
    5
    Views
    2,321

    Wow. Thanks, FloridaJo. I was right - that was...

    Wow. Thanks, FloridaJo. I was right - that was amazingly simple. I will remember that syntax forever, mostly because it caused me so much trouble not to.
  7. Replies
    5
    Views
    2,321

    It's probably some super simple thing that I...

    It's probably some super simple thing that I would see right away if I weren't a beginner. And by the way, let me redo that with comments.


    /*
    Programmer : Caleb Spiess
    Date :...
  8. Replies
    5
    Views
    2,321

    Loop Problem

    There is no error at least that Pelles C can find. I am just learning how loops work, and I am trying to figure out how to print out 1 - 99 without a bijillion printfs. Here is the code.

    ...
  9. Replies
    4
    Views
    11,104

    Basically, I want something like this:...

    Basically, I want something like this: Cprogramming.com Tutorial: Introduction to C - Cprogramming.com.

    Except with more programming challenges. Like, with a challenge or two every time you learn...
  10. Replies
    4
    Views
    11,104

    Interactive C Tutorial

    I am looking for a C tutorial that gives you an example program to show you how something works, then explains it extremely thoroughly, then challenges you to make a program of your own that does...
  11. Thank you, by the way Cron, for the tips. I am...

    Thank you, by the way Cron, for the tips. I am just starting with the language.
  12. As a matter of fact, the getchar() does have a...

    As a matter of fact, the getchar() does have a function. It keeps the program from moving on without the user. I think. If there is a better way to do that, tell me please.
  13. Thanks, guys. That should do it.

    Thanks, guys. That should do it.
  14. That's weird. I got rid of both of the...

    That's weird. I got rid of both of the unnecessary semicolons. For some reason, however, I now have both the original error and a new one: by the way, if it is useful, I am using Pelles C.
    ...
  15. Thanks. I thought it would be something...

    Thanks. I thought it would be something ridiculously simple. I'm still learning, but I'm getting there.
  16. Thread: Compiler

    by Gigabitten
    Replies
    17
    Views
    5,651

    You were right, the IDE was the best thing I have...

    You were right, the IDE was the best thing I have ever downloaded. For the record, the error codes are clearer, and the fact that I deal with errors more than the original program makes this...
  17. What line is the error? Or, even better, what is the error?

    #include <stdio.h>

    int main()
    {
    int age;
    printf( "Please enter your age: " );
    scanf( "%d", &age );
    if( age < 20 ); {
    printf( "Wow! You're pretty young!" );
    ...
  18. Thread: Compiler

    by Gigabitten
    Replies
    17
    Views
    5,651

    By the way, how do you mark a thread as solved?

    By the way, how do you mark a thread as solved?
  19. Thread: Compiler

    by Gigabitten
    Replies
    17
    Views
    5,651

    Geez! I left for one day and you already have a...

    Geez! I left for one day and you already have a full-on debate going! Not bad! Thanks for the tips, guys.
  20. Thread: Compiler

    by Gigabitten
    Replies
    17
    Views
    5,651

    Compiler

    I just need a Windows C compiler. I need something that I can install that can put a function into the command line and I can type in a command from anywhere in the command line prompt and compile a...
  21. Replies
    8
    Views
    5,958

    Such a simple syntax error...thanks, guys! I was...

    Such a simple syntax error...thanks, guys! I was amazed at how fast the answer came!
  22. Replies
    8
    Views
    5,958

    By the way, this is just experimental. There is...

    By the way, this is just experimental. There is absolutely no purpose to this program than a learning experience.
  23. Replies
    8
    Views
    5,958

    Beginner's Problem

    I'm a novice C programmer using the Ubuntu terminal to compile. As in, I just started today. The compiler keeps coming up with this:

    Variable1.c: In function 'main':
    Variable1.c:9:46: error:...
Results 1 to 23 of 23