Search:

Type: Posts; User: shel5210

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    1,129

    While loop problem

    I am trying to write a program to basically solve a word search for a class. whenever I run the following function:



    #include <string.h>
    #include <stdio.h>
    #include <stdlib.h>
    #define SIZE...
  2. Replies
    8
    Views
    4,032

    help with strcmp()

    Can someone how the following line works step by step? I know what it does, but I guess I don't understand the syntax.



    return strcmp(word, "STOP") ! = 0;


    The line is supposed to return 0...
  3. Replies
    2
    Views
    2,092

    Deal or No Deal arrays

    I am attempting a deal or no deal game for a class. I have everything working, except for if the player wishes to review the remaining cash prizes.

    To start i have 2 arrays. One containing the...
  4. Replies
    2
    Views
    1,436

    Comparing 2 arrays

    I am programming a deal or no deal game for class. I am stuck at the point after a person "opens" a case. I can get the program to display the proper case number and hidden value, I can also get the...
  5. Replies
    1
    Views
    1,207

    Clearing Array Values

    I have an array with length 10, filled with values. i need to write a function that clears the values one at a time using user input.

    For example, the user inputs 3, and the 3rd value in the array...
  6. Replies
    1
    Views
    3,210

    Deal or No Deal Proogram

    Our teacher gave us a little sample code, and told us to write a deal or no deal program in C. I am stuck as to where to start. Here is the code. Thanks in advance!!!


    #define SIZE 10
    int main...
Results 1 to 6 of 6