Search:

Type: Posts; User: leopardforest@g

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,202

    ok thank you very much that is what I thought....

    ok thank you very much that is what I thought. Thank you.
  2. Replies
    5
    Views
    1,202

    I just thought I remember someone telling me that...

    I just thought I remember someone telling me that scanf() only used %f . But maybe my memory is just failing me. Thank you!
  3. Replies
    5
    Views
    1,202

    ok am I just dumb or does it not matter? Doesn't...

    ok am I just dumb or does it not matter? Doesn't it just depend on the type used ie: float, double, int ??

    Thanks!
  4. Replies
    5
    Views
    1,202

    Using scanf() ??

    When using scanf() to assign to a to a double is this the right way to do it:


    scanf("%f%*c", double)

    or

    scanf("%lf%*c", double)

    Thanks!
  5. Sorry for doubting you in your suggestion. I...

    Sorry for doubting you in your suggestion. I think i see what you are try to say. This is my most current code and it seems to be giving the results that I need. Does it look like what you were...
  6. Thanks, but thats not quite what I am looking...

    Thanks, but thats not quite what I am looking for.

    So if the user inputs this:


    Enter your Code : 1 (This number also corresponds with a name array that works)

    Date: 05/09/07
    ...
  7. Oh I did not realize. Thanks.

    Oh I did not realize. Thanks.
  8. I dont quite understand? Am I in the wrong forum?

    I dont quite understand? Am I in the wrong forum?
  9. New to 'C' using fseek(), Any suggestions??

    I am writing a program that saves all of its input to a binary file. I have three entries: your code(1-5), date, and sale amount. I have the program storing everything in the file, but I need to...
  10. Replies
    1
    Views
    1,385

    never-mind i figured it out thanks anyways.

    never-mind i figured it out thanks anyways.
  11. Replies
    1
    Views
    1,385

    Grand Totals??

    I am working on a program where I just started using structures and I am listing product numbers, types, descriptions, quantities, costs, prices, and profits. Now after I have entered x amount of...
  12. Replies
    3
    Views
    1,236

    I havent written anything yet. Would i want to to...

    I havent written anything yet. Would i want to to have the program start out uppercase and then count characters and whenever it reached whitespace have it switch back to uppercase?
  13. Replies
    3
    Views
    1,236

    Changing Case?

    How can I change the case of a string? I need to be able to change the case so it would look like this:


    input: "this is a string" output: "This Is A String"

    or

    input: "THIS IS A STRING" ...
  14. so using 22.2lf is not desired? so...

    so using

    22.2lf

    is not desired?

    so use

    22.2f
  15. Replies
    4
    Views
    6,165

    Alright thank you for the help!!

    Alright thank you for the help!!
  16. Alright this what I have at the moment and it is...

    Alright this what I have at the moment and it is giving me what I want, now I just need to make sure that it is what I am supposed to do. Here is it is.


    #include <stdio.h>
    #include <ctype.h>...
  17. Replies
    18
    Views
    2,158

    Do you think that will be fine? It seems like he...

    Do you think that will be fine? It seems like he would have made it clearer if that was the case. Right? I am not too sure... I am very new at this.
  18. Replies
    4
    Views
    6,165

    sorry that was my mistake. I meant in C language....

    sorry that was my mistake. I meant in C language. How to underline in C language?
  19. Replies
    18
    Views
    2,158

    I am not challenging you. But I dont understand...

    I am not challenging you. But I dont understand why I have to do that? What tells you that you have to calculate it outside of the loop? Am I missing something?
  20. Replies
    18
    Views
    2,158

    Oh I really didnt know. But I think that I am...

    Oh I really didnt know. But I think that I am supposed to use pointers. See the very first post. Does it seem to follow those directions??
  21. Replies
    4
    Views
    6,165

    How To Underline??

    If I wanted to have something print underlined, how would I do that? Is it something simple or is it rather involved?

    Thanks
  22. Replies
    18
    Views
    2,158

    What is the benefit of doing that?

    What is the benefit of doing that?
  23. Replies
    18
    Views
    2,158

    ok how about this one. it seems to be working...

    ok how about this one. it seems to be working right.


    int main(void )
    {



    char name[][100] = {"Larry Lister", "Sue Sales ", "Eva Escrow ",
    "Morley Money", "Pete Profit"};
  24. Replies
    18
    Views
    2,158

    Yes I must because I just ran the program a bunch...

    Yes I must because I just ran the program a bunch of times and it is only using the first input for the total and average. Loop...hmmm. I will be back.
  25. Replies
    18
    Views
    2,158

    How about this code, I just got it to work and I...

    How about this code, I just got it to work and I think that it follows the directions?






    }
    while (choice != 'N');
    report(name, totsales);
Results 1 to 25 of 43
Page 1 of 2 1 2