Search:

Type: Posts; User: Guideon72

Search: Search took 0.00 seconds.

  1. Replies
    14
    Views
    29,278

    Rahat, I'm using the free Borland C++ 5.5...

    Rahat,
    I'm using the free Borland C++ 5.5 compiler/linker. The only thing I get is an error message that says, "Call to undefined function 'delay' in function main()". That is all that I get,...
  2. Replies
    14
    Views
    29,278

    Thanks for the definitions, Procyon! Those were...

    Thanks for the definitions, Procyon! Those were great. I am still getting "undefined function 'delay' in function main()" error when I try to compile this. It does this whether I do #include...
  3. I can't help you with the problem above yet, but...

    I can't help you with the problem above yet, but I would suggest picking up a different book. I have tried a couple different versions of the "teach yourself <blank> in however long it is books" and...
  4. Replies
    14
    Views
    29,278

    Wheeww!!! Well, I've tried several different...

    Wheeww!!! Well, I've tried several different ways to get void delay to work and I'm just not getting it. Here is what I have for the prog. so far:

    ____________________code__________________
    ...
  5. Replies
    14
    Views
    29,278

    Borland C++ 5.5

    Borland C++ 5.5
  6. Replies
    14
    Views
    29,278

    I wound up with a "call to undefined function in...

    I wound up with a "call to undefined function in main" compiler error with that. Do I need to include an additional header file for sleep to work?
  7. Replies
    14
    Views
    29,278

    How can I create a time delay?

    How would one go about creating a delay between the executions of a function? I have made a timer that counts down to zero from a number specified by the user. Unfortunately, it does it all at...
  8. You are more or less correct on what "int" does. ...

    You are more or less correct on what "int" does. If you are going to use a variable(s) in your program, you need to tell the program what you are going to call them so it can look for them as it...
  9. Replies
    9
    Views
    2,514

    I just started working with it this week, myself....

    I just started working with it this week, myself. I have already received some great input from folks here, and finding a good book is a MUST. You can find several at a decent book store. Just...
  10. Replies
    4
    Views
    1,138

    Thank you :) That's what I needed.

    Thank you :) That's what I needed.
  11. Replies
    4
    Views
    1,138

    What do those mean? I'm just learning C right...

    What do those mean? I'm just learning C right noow and I don't know all of the commands yet.
  12. Replies
    4
    Views
    1,138

    character string as a variable?

    Can I use a character string as a variable to get a program to do one action if a specific word is typed and a different action if another word is typed?

    ___________
    #include <stdio.h>

    int...
  13. Replies
    9
    Views
    1,276

    By the way, I just wanted to say thanks again for...

    By the way, I just wanted to say thanks again for your help Quzah!
  14. Replies
    9
    Views
    1,276

    OHHHHHHHHHHHHHHH!!! Ok, now I get it. It was...

    OHHHHHHHHHHHHHHH!!! Ok, now I get it. It was the part about the actual variable as listed in the beginning being, in effect, dynamic.

    So, if I wanted to have another function call rate and...
  15. Replies
    9
    Views
    1,276

    I thought that because rate and hours are...

    I thought that because rate and hours are determined first that having the total in the declarations at the beginning would automatically assign the values that the user entered, and therefore...
  16. Replies
    9
    Views
    1,276

    Thanks for the tips! :) My only question is...

    Thanks for the tips! :) My only question is where in the code does the total=rate*hours go? That is what I was attempting to do up above, but it doesn't work there. Should it actually be located...
  17. Replies
    9
    Views
    1,276

    Ok, here's the whole thing...it's not pretty but...

    Ok, here's the whole thing...it's not pretty but it works(mostly)...

    #include <stdio.h>

    main()
    {
    char name[10];
    float rate;
    float hours;
    float tax;
  18. Replies
    9
    Views
    1,276

    Need help with variables

    I need some help with my variables in C(the basic one, not that new fangled plus stuff) <grin>. I have successfully defined two variables and would like to have a third that is the product of...
Results 1 to 18 of 18