Search:

Type: Posts; User: strickyc

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. isdigit() i.e if(isdigit(variable)) { ...

    isdigit()

    i.e if(isdigit(variable))
    {
    do this
    }
    else
    getchar();
  2. I think the problem was to illustrate the out of...

    I think the problem was to illustrate the out of order sequence of the case statements and how it will effect the outcome. I think he was suppose to test the code and learn. Personly instead of...
  3. Replies
    25
    Views
    2,953

    So your trying to write your own strcmp()...

    So your trying to write your own strcmp() function?
  4. Replies
    17
    Views
    2,346

    Character types in C and C++...

    Character types in C and C++

    Ok you win. Its not a standard.
  5. Replies
    17
    Views
    2,346

    I'm pretty sure it's signed by default as a...

    I'm pretty sure it's signed by default as a standard. Any compiler that doesn't have it like this doesn't adhere to the standards. Also I think it's an option you can change on some compilers.
  6. Replies
    17
    Views
    2,346

    Isn't it signed by default? Only unsigned if its...

    Isn't it signed by default? Only unsigned if its declared as so.
    Eventhough it isn't made explict doesn't mean its not.


    edited: Added content
    http://gcc.gnu.org/ml/gcc/2007-01/msg00966.html
    ...
  7. Replies
    64
    Views
    7,919

    A map is more like an array of pointers than just...

    A map is more like an array of pointers than just a pointer. You still need another pointer to use a map say like "1600 Pennsylvania Avenue NW in Washington, D.C.". That address isn't the pointer but...
  8. Replies
    13
    Views
    1,340

    Congratz, next lesson is? I hope use of proper...

    Congratz, next lesson is? I hope use of proper data-types.
  9. Replies
    13
    Views
    1,340

    Dang, I should like slow down a bit I suppose....

    Dang, I should like slow down a bit I suppose. Both my replies on this simple matter was flawed.
  10. Replies
    13
    Views
    1,340

    Opps my bad, didn't relieze you used a float for...

    Opps my bad, didn't relieze you used a float for the storing of adding two integers. Cause thats how many 0's are in a floating point number. If you wanted to print just two zeros it would be ...
  11. Replies
    13
    Views
    1,340

    almost correct your printf statement is...

    almost correct

    your printf statement is wrong.("%f", c);
  12. Replies
    15
    Views
    3,837

    Well to the original poster. I think your trying...

    Well to the original poster. I think your trying to think to big. You should be breaking your problems down to where any one thing you have to do is a small function.

    edit: I notice you've also...
  13. Replies
    10
    Views
    3,966

    You forgot the part of the code where if %.2lf...

    You forgot the part of the code where if %.2lf goes past the hundreth decimal pace it sends the remainder (.00XXXXX) to your personal bank account.
  14. Replies
    24
    Views
    3,253

    Most schools have tutor assistance. I realy don't...

    Most schools have tutor assistance. I realy don't understand why they don't use them. Just the over-all laziness?
    And truely it hurts none to give simple solutions to simple problems. A beginner...
  15. Replies
    26
    Views
    15,718

    I only eat hot-dogs or sandwiches at things like...

    I only eat hot-dogs or sandwiches at things like pic-nics. Its always much easier to bring along chips than some cold fries. If Nathans' isn't your friend then Im assuming its a restaruant thats...
  16. Replies
    26
    Views
    15,718

    If you like steak frytes with your steak its...

    If you like steak frytes with your steak its fine. But it was a personal question and my responce is still a nice fat juicy baked potato when eating a steak.(also I like my steaks bleeding with no...
  17. Replies
    26
    Views
    15,718

    boiled, baked, fried, saladtized, hashbrowns(a...

    boiled, baked, fried, saladtized, hashbrowns(a variation of fried), soups and ...(whatever I missed) are all great and really depends on the meal I'm having.

    For steak Baked for sure.
    For...
  18. Thread: Lost

    by strickyc
    Replies
    36
    Views
    5,089

    I don't like lost, It sucks totally. (unless your...

    I don't like lost, It sucks totally. (unless your talking about the one with dinosuars, then that show was totaly worth watching because of the jungle girl wearing animal skins)
    But the one that was...
  19. Replies
    18
    Views
    42,171

    how long should it take an average hobbyist to...

    how long should it take an average hobbyist to learn to program in c as the first language.

    Depends on how long it takes you to read understand and implement the things you learn in the vast...
  20. I think the better your math is the better your...

    I think the better your math is the better your programs will be. Smaller simplier and faster.
    It's all about logic. I guess you could still have a logically thinking mind and do poorly in...
  21. Replies
    14
    Views
    12,541

    I seen a few in your area I think this one looks...

    I seen a few in your area I think this one looks the most promising.

    Sacramento City College Computer Information Science

    Los Rios Community College District - Summer and Fall Enrollment and...
  22. Replies
    6
    Views
    1,695

    Your code is really ate up. I'm not really sure...

    Your code is really ate up. I'm not really sure what your trying to acheive.


    #include <stdio.h>

    int main(void)
    {
    char c;
    int letter [3] = {0};
  23. I really don't think any of the pros and cons...

    I really don't think any of the pros and cons verses macros and functions deal with the OP's needs. S/he just wants to simplify things a bit cause of the typing.

    Also macros don't guarentee code...
  24. (opps) was typing it fast(opps)

    (opps) was typing it fast(opps)
  25. #include #define pause...

    #include <stdio.h>

    #define pause system("pause")

    int main()
    {
    pause;
    pause;
    pause;
    return 0;
Results 1 to 25 of 43
Page 1 of 2 1 2