473,408 Members | 1,741 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,408 software developers and data experts.

New to C and need help

I am in my first programming class, and am on my last program of the semester and I need a LOT of help. I have bascially taught myself thus far and well, am not doing so well. My professor gave the class a skeleton code for a scrabble program. I need to write 2 functions and edit a third. The first one is when given the tiles the user has and the word they wish to make, the function needs to determine if the user has the letters and return 1 if they do and 0 if they dont. I have no clue how to begin this. Can anyone help me?
Nov 29 '06 #1
2 1545
smithan
16
I am in my first programming class, and am on my last program of the semester and I need a LOT of help. I have bascially taught myself thus far and well, am not doing so well. My professor gave the class a skeleton code for a scrabble program. I need to write 2 functions and edit a third. The first one is when given the tiles the user has and the word they wish to make, the function needs to determine if the user has the letters and return 1 if they do and 0 if they dont. I have no clue how to begin this. Can anyone help me?
hi,

try to post the code u have come up with, so that its easier to understand what is that u exactly need to do.......

anyways for now, u can have a function thats called everytime a user wants to do a word.... send the funtion the alphabets of the word the user wants to do and also make the list of alphabets the user has, as a global variable... in the fuction try to find if all the alphabets he needs to form the word is present in the list, if present return 1 else return 0.....

incase u need more help, try to post the entire question.....then, i can give u the program

smitha
Nov 29 '06 #2
hi,

try to post the code u have come up with, so that its easier to understand what is that u exactly need to do.......

anyways for now, u can have a function thats called everytime a user wants to do a word.... send the funtion the alphabets of the word the user wants to do and also make the list of alphabets the user has, as a global variable... in the fuction try to find if all the alphabets he needs to form the word is present in the list, if present return 1 else return 0.....

incase u need more help, try to post the entire question.....then, i can give u the program

smitha

thanks for your reply. i am confused as how to write that.i know this is not as difficult as im making this out to be, but for some reason, can not get past this. this is what i have for this section, however the function is not complete.
Expand|Select|Wrap|Line Numbers
  1.  // Get the word from the user to play.
  2.     printf("\nPlease enter a word you would like to form.\n");
  3.     scanf("%s", word);
  4.  
  5.     //check to see if user has the letters to make the word
  6.     int valid(struct tile tiles[], char word[]);
  7.     //this is the function i need help with
  8.  
  9.  
  10.     // Check if the word is valid.
  11.     if (valid(tiles, word)) {
  12.  
  13.        int x, y, direction;
  14.  
  15.        // Get the location and orientation of the word to be placed.
  16.        printf("Where would you like to place the word?\n");
  17.        printf("Enter the starting row coordinate(0-14).\n");
  18.        scanf("%d", &x);
  19.        printf("Enter the starting column coordinate(0-14).\n");
  20.        scanf("%d", &y);
  21.  
  22.        printf("Would you like the word going down(0) or across(1)?\n");
  23.        scanf("%d", &direction);
  24.  
  25.  
Nov 29 '06 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334,...
5
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows:...
0
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities,...
9
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
7
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte...
15
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to...
16
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client...
8
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only...
0
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need ...
20
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.