Search:

Type: Posts; User: schmidtc

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    2,272

    I see. I ended up just adding a second char in my...

    I see. I ended up just adding a second char in my scanf statement so it would pick up the return character so now its basically discarded and is not search for or used in my printf statement.
    ...
  2. Replies
    8
    Views
    2,272

    I tried this but its not working right. ...

    I tried this but its not working right.



    #include "mystuff.h"

    void countchar (NODE* pList)
    {
    // local declarations
    int a;
  3. Replies
    8
    Views
    2,272

    I should have put this in the first post but this...

    I should have put this in the first post but this is the purpose of the function.

    It is supposed to read an input from the user and then scan the linked list for it and it will print the number of...
  4. Replies
    8
    Views
    2,272

    I added the break but the code still gives an odd...

    I added the break but the code still gives an odd output


    #include "mystuff.h"

    void countchar (NODE* pList)

    {
    // local declarations
    int a;
  5. Replies
    8
    Views
    2,272

    printing with linked list problem

    Any help on this print function using a linked list. I am getting the print statement coming up twice.



    #include "mystuff.h" ...
  6. Replies
    7
    Views
    1,559

    thanks

    thanks
  7. Replies
    7
    Views
    1,559

    Now the code works. #include "mystuff.h" ...

    Now the code works.


    #include "mystuff.h"

    void vowels (NODE* pList)

    {
    int w = w;
    int a = 97;
  8. Replies
    7
    Views
    1,559

    Help with linked list function

    The purpose of the function is to print the number of vowels in a linked list. The function compiles fine but will not print the correct number. I am not sure what is wrong. Any help would be great....
  9. Replies
    2
    Views
    3,212

    I ended up using = and it works perfect. if...

    I ended up using = and it works perfect.

    if (table[j][i] >= largest)
    {
    largest = table[j][i];
    large = i;
    }
  10. Replies
    2
    Views
    3,212

    Find last largest integer in array?

    I am having trouble writing code that will print the last index of the last largest integer an a array. I can get it to print the first index of the largest but if I have two of the largest number in...
Results 1 to 10 of 10