Search:

Type: Posts; User: collegegal

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    6,947

    I know 312 is a lot of cards. But I have to use 6...

    I know 312 is a lot of cards. But I have to use 6 decks for my game. Hey you got any ideas for a function for Split. I thought about using pointers but I'm not really good at that. Any ideas?Thanks!
  2. Replies
    4
    Views
    6,947

    I need some help with dealing cards.

    struct card {
    const char *face;
    const char *suit;
    };

    typedef struct card Card;

    void fillDeck( Card * const, const char*[], const char*[] );
    void shuffle( Card * const );
    void Deal( const...
  3. Replies
    4
    Views
    1,870

    Thanks, now all I have to come up with is the...

    Thanks, now all I have to come up with is the functions for Split, Double, and Insurance. I really appreciate everybody's input. Sorry I got so nasty. I was up most of the night working on this. I...
  4. Replies
    2
    Views
    1,025

    Give me a break!!!

    I see that some of you people here will help out some of the people some of the time, but not me! What, did I not shower or something? What am I missing?
  5. Replies
    2
    Views
    1,132

    Give me a break!!!

    I see that some of your people here help other people out but no one seems to want to help me out. What, am I some kind of leper or something?
  6. Replies
    2
    Views
    1,278

    blackjack game Please, please help!!

    I have to write a blackjack game for my C programming class. I have most of the code written, but I need some help. Please can
    someone help. Here's my code.
    #include <stdio.h>
    #include <stdlib.h>...
  7. Replies
    4
    Views
    1,870

    blackjack game Please, please help!!

    I have to write a blackjack program in C. I have most of it written and I need a little help. Here's my code so far. Help! Help! Help!
    #include <stdio.h>
    #include <stdlib.h>
    #include <time.h>
    ...
  8. Replies
    1
    Views
    800

    class structure, a little help please!

    class Name {

    public:
    Name( char *, char * );
    Name();
    ~Name();
    bool operator==( const Name &n ) const;
    const Name operator+=( const Name &n );
    char first[ 26 ];
    char last[ 26 ];
  9. Thread: Hello

    by collegegal
    Replies
    7
    Views
    2,306

    C_coder, I tried to look there but couldn't go...

    C_coder, I tried to look there but couldn't go there.
  10. Replies
    5
    Views
    2,206

    I am full time student at UC (Cinti.). I also...

    I am full time student at UC (Cinti.). I also work full time at the USPS. I am trying to get my BS in IT. I am sick of delivering the mail, been doing it for over 18 years. I want a job that I...
  11. Thread: Hello

    by collegegal
    Replies
    7
    Views
    2,306

    I am new to these boards. How do you get a...

    I am new to these boards. How do you get a picture under your screen name. Gne-ehacks, it's cool that your include the lyrics from D.C. Talk.
    I am going to U.C. and am having fits with my c...
  12. Replies
    1
    Views
    2,283

    blackjack game

    I am attempting to write a c program for a blackjack game for my c programming class. I have the code for the shuffling of the cards. I am required to use six decks of cards. My professor says that...
  13. Replies
    2
    Views
    1,526

    class structure

    I am writing a program which asks for a first and last name and puts them in a class structure. I am haveing difficulities withthe arguments for the constructors. I don't understand what I need. Does...
Results 1 to 13 of 13