C language code homework

profilesnowflakes997
Lab17INSTRUCTIONSBlackJack.txt

Lab 17 - BlackJack MW Class: Due Nov 19th TTh Class: Due Nov 20th Instructions: Add the following in to your code for BlackJack.c 1) Add the usual header 2) Add comments to line 21 and 24 (what do these lines do?) #define BELL '\a' #define SCREENLINECOUNT 25 3) Add a betting system. The user should start out with $200 and be able to bet any amount as long as they have money to bet. EX: You have $200 Place your bet: $50 ...after a few hands You have $30 Place your bet: $40 Sorry ... you don't have enough to place this bet You have $75 Do you want to bet or quit? Quit when the user has no money left, or wants to stop. 4) Add a black jack logo and change the output so that you can clearly tell what the dealer hand and total points are as well as clearly tell what the player hand and total points are along with a next bet and their balance of money. 4) Code should run continuously without error or stopping. Code should accept Y as well as y to loop again. 5) Turn in code only. No printing. Be creative!