Search:

Type: Posts; User: ARod609

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    4,896

    Thanks, that answered a lot of my question. What...

    Thanks, that answered a lot of my question. What about your own experiences?
  2. Replies
    3
    Views
    4,896

    I decided to go for it...

    I decided to go to school for computer science, I have a lot of questions on what to do to prepare myself for the real world. I want to become a good reliable programmer. What should I look for in...
  3. Planning on taking "Computer Science" for my major any advice?

    Planning on taking "Computer Science" for my major, wondering about any advice on classes or languages I should learn?

    Thanks everybody for helping me learn some of the fundamentals, your help...
  4. Replies
    11
    Views
    5,523

    #include void change(float, int *,...

    #include <stdio.h>

    void change(float, int *, int*, int*, int*);

    int main()
    {
    float total;
    int quarters, dimes, nickels, pennies;

    {
  5. Replies
    11
    Views
    5,523

    @Stahta01 I am just trying to learn "C" with the...

    @Stahta01
    I am just trying to learn "C" with the help of the board, I only post a question when I am stumped... Your jokes are funny haha, now I appreciate your advice on writing out the steps and...
  6. Replies
    11
    Views
    5,523

    @Stahta01 I know I just dont know how to apply it...

    @Stahta01 I know I just dont know how to apply it in "C" lol... so I am lost using the call functions with the modular division (%) to get the remainder to break it down in cents. I thought it would...
  7. Replies
    11
    Views
    5,523

    1) Math header not sure if i need it... 2)...

    1) Math header not sure if i need it...
    2) Function I am not sure on how to use it correctly...
    3) Output did exactly what I was not supposed to do...

    The book I am using has a bunch of...
  8. Replies
    11
    Views
    5,523

    How should I go about solving this problem?

    Write a C function named change() that accepts a floating point
    number of total coins and the addresses of the integer variables named
    quarters, dimes, nickels, and pennies. The function should...
  9. Replies
    15
    Views
    8,154

    Output x is one x is not one or two ...

    Output



    x is one
    x is not one or two



    I see, so the first "if" function and the "else" perform there functions because the code did not clarify what process it wanted to follow?
  10. Replies
    15
    Views
    8,154

    So that could cause a conflict in more...

    So that could cause a conflict in more complicated programs?
  11. Replies
    15
    Views
    8,154

    #include int main (int argc, const...

    #include <stdio.h>

    int main (int argc, const char * argv[])
    {

    char let;


    printf("Please Insert a single character here: \n");
    scanf("%c",&let);
  12. Replies
    15
    Views
    8,154

    Wow! its so much simpler than I thought thank you...

    Wow! its so much simpler than I thought thank you also the way I set up the Characters A-Z-



    case 'a':case'b':case'c':case'd':case'e':case'f':case'h':case'i':case'j':case'k':
    ...
  13. Replies
    15
    Views
    8,154

    So i Should just use "char" and have one "scanf...

    So i Should just use "char" and have one "scanf function"
  14. Replies
    15
    Views
    8,154

    Having a problem with a Switch Statement

    1. Ask for a single character to be typed from the keyboard. Analyze the
    character and print out a message that it is:
    - an alphabetic character (a–z or A–Z)
    - a digit (0–9) or...
  15. I tried just to simplify it, now I am just going...

    I tried just to simplify it, now I am just going to read up on it obviously something I am doing with the if and else statement is wrong and I have to read up on switch statements too...

    input:"w"...
  16. Well I want it to respond to a #0-9 You...

    Well I want it to respond to a #0-9

    You entered the number four
    and
    Error when you type a character

    formatting the if and else statement is what I am getting confused with I try using the...
  17. Trying to teach myself C programing language, and I am not sure how to solve this...

    Ask the user to enter a digit between 0 and 9. Have the program print
    out the digit in words, for example:

    Enter a digit between 0 and 9: 4
    You entered the number four

    Assume that the...
Results 1 to 17 of 21