up vote 0 down vote favorite
1
share [g+] share [fb]

My problem is very simple, but I really don't know how to manipulate strings in C

The problem is: I have a struct called person

struct person
{
  char name[25] // use char *name better?
}p;

I also have a function called p *addNewPerson(char *name)

p *addNewPerson(char *name)
{
  p *newPerson = (p *)malloc(sizeof(person));
  //here how can I assign the name to this new person?
  ...
  return newPerson;
}

So, in the main function

void main()
{
   for(; ;)
  {
    char input[25];
    scanf("%s", input); // is this way possible?
    //shoud I do something with this "input", like input[strlen(input)-1] = '\0'
    //call addNewPerson()
    p *newPerson = addNewPerson(&input);
    //store this newPerson in some data structure
    ...
  }
}

Clarification: the question is how can I assign the name to this new person inside p *addNewPerson(char *name)?

link|improve this question

1  
And what is the problem? Other than the missing semicolon after name[25]? – EboMike Sep 8 '10 at 20:46
Use "int main()"; it is guaranteed by the Standard to work. Your struct person works as is. If you changed to char * name;, you'd have to malloc() memory for it and then remember to free() it. Your way of reading names in works as long as scanf() reads only 24 characters (you need one for the null string terminator), but scanf() isn't a very safe function to use. You can learn safer ways to get input later. – David Thornley Sep 8 '10 at 21:00
Ignoring the fact that p is not a type, you must not use & in the call to addNewPerson: p *newPerson = addNewPerson(input);. input is by itself a char *; &input is a char **. – pmg Sep 8 '10 at 21:22
Thank folks, I am heading for the glory now! – baboonWorksFine Sep 8 '10 at 22:12
feedback

7 Answers

up vote 4 down vote accepted
p *newPerson = (p *)malloc(sizeof(person));
//here how can I assign the name to this new person?

You would do this:

strcpy(p->name,name);

You should also change your use of p to struct person since p is not a type, it is a global veriable of type struct person . Change the code to:

struct person *addNewPerson(char *name)
{
   struct person *newPerson = malloc(sizeof *newPerson);

//shoud I do something with this "input", like input[strlen(input)-1] =

No, scanf will nul terminate the string for you.

Be aware though, string handling in C needs to be done very, very carefully. e.g. when you do scanf("%s", input); , what happens if you enter a name longer than 24 characters ?

Anything might happen. scanf might overflow your buffer, and you get undefined behavior. You should do atleast this:

  int ret = scanf("%24s",buffer);  //read max 24 chars, to make space for a final '\0'
  if(ret == EOF) { //end of input reached.
     break; 
  if(ret != 1) {
    // for whatever reason, the conversion failed. exit, or alert the user, or whatever
  }

Similarly inside your addNewPerson at the strcpy(p->name,name); , strcpy might happily write past the buffer if the name is longer than what p->name can hold. In this particular case, with the above modification to scanf, the length will always be 24 or less so it's safe. But be very aware of this in general .

The call to addNewPerson should just pass the name of buffer directly, when used as a value, the name of an array decays to a pointer to the first element of that array;

 struct person *newPerson = addNewPerson(input);

Since newPerson is dynamically allocated with malloc() , remember to free() it when you no longer need it. Otherwise you will leak memory.

link|improve this answer
2  
To add to this answer: scanf can cause some security issues with buffer overflows. Check cprogramming.com/tutorial/secure.html and try using fgets w/ stdin – SB. Sep 8 '10 at 20:52
scanf parameters take a width type that will stop the input array being overwritten by two much input. "%24s" – Loki Astari Sep 8 '10 at 20:55
Unchecked calls to strcpy() can also cause buffer overflows. – Jonathan Leffler Sep 8 '10 at 21:06
feedback

There is a fundamental flaw in your code which nobody hasn't picked up on yet which is worth noting. p is not a type, it is a variable declaration of type struct person. Your addNewPerson() function just would not work at all. Either change the addNewPersion() function appropriately:

struct person *addNewPerson(char *name)
{
    ...
}

or define the type p:

typedef struct person { ... } p;

Then use strcpy() (rather, I'd suggest strncpy() instead) as the others have suggested.

struct person *addNewPerson(char *name)
{
    struct person *newPerson = (struct person *)malloc(sizeof(struct person));
    //strcpy(newPerson->name, name);
    strncpy(newPerson->name, name, sizeof(newPerson->name)); //more safe
    return newPerson;
}
link|improve this answer
feedback
  1. You can assign the name member by sprintf(p->name, "%s", name);, but you should be wary of overflowing the 25 character buffer. For instance, you could do snprintf(p->name, 25, "%s", name);

  2. The most important thing you should learn in writing this program is that anything you malloc() needs to be free()'d. Otherwise, you will cause memory leaks. At the end of main(), make sure to free(newPerson);. If you change your structure member to be a pointer, you will need to malloc it, and then free it whenever appropriate.

link|improve this answer
Using sprintf here is overkill; we're dealing with a string copy, not a string formatting operation. Well done pointing out the malloc/free thing, though. – You Sep 8 '10 at 20:56
feedback

Use strcpy to copy the string and store it in your struct:

strcpy(p->name, name);

Also remember to check the string length so that it fits in name without overflowing.

link|improve this answer
feedback

I rather call the method constructPerson. This is actually a constructor in OOP jargon

struct person
{
  char *name; //can hold string of different sizes
}p;

p *addNewPerson(char *name)
{
  p *newPerson = (p *)malloc(sizeof(person));
 p->name= (char *) malloc(sizeof(char)*(strlen(name)+1));//don't forget to claim space for the '/0' character at the end of the string
 strcpy(p->name,name);
  return newPerson;
}
link|improve this answer
1  
Off-by-one buffer overflow: strlen(name)+1 or strdup(name). – Jonathan Leffler Sep 8 '10 at 21:06
right!, tks for pointing it out. I fixed the post – Dani Cricco Sep 8 '10 at 21:10
feedback

You can do it two ways.

First, as you suggest, you can change the member name of person from an array to a pointer. Then in addNewPerson, you would just do:

p *newPerson = (p *)malloc(sizeof(person));
p->name = name;

EDIT: As noted in the comments, this is inherently bad, and you should be copying the bytes. I've been working in reference counting land too long.

Otherwise, you'll need to copy the bytes from the passed in name into your struct array. I would use strlcpy as such:

strlcpy(p->name, name, sizeof(p->name));

if available, otherwise use:

strncpy(p->name, name, sizeof(p->name));

The only difference being that you would have to null-terminate p->name if name was too long to fit into p->name.

link|improve this answer
The first is fundamentally flawed: pointing to a buffer passed by function parameter, no no. – Codism Sep 8 '10 at 21:07
feedback

You need no strcpy, you need no malloc, you need no sizeof etc. IF you use an char-array in your struct, eg:

typedef struct {
char name[25];
} Person;

main() {
  Person person;
  char name[25];
  if( 1==scanf("%24s",name) )
    person=*(Person*)name;
  return 0;
}

or if you need more persons:

main() {
  Person person[2]={{"firstperson"}};
  char name[25];

  if( 1==scanf("%24s",name) )
    person[1]=*(Person*)name;

  puts( person[0].name );
  puts( person[1].name );

return 0;
}
link|improve this answer
That's quite a bold statement to make. It's not safe to play with pointers that way. – Jeff Mercado Sep 8 '10 at 21:38
It will ever works on all ANSI C environments; tell me one non working system/compiler please – user411313 Sep 8 '10 at 21:43
Sorry, poor choice of words there since I last edited my comment. Yes it would work but I would consider this approach more of a hack than a proper way to deal with the question at hand. Of course if Person was more complex, it would require tweaks, but it is still a hack. – Jeff Mercado Sep 8 '10 at 21:58
the question was: string-handling in structs; my solution is safer than strcpy/strncpy eg. for uninitialized contents in Person.name. For more complex structs its the same: typedef struct {char name[25];} Name25; typedef struct {Name25 a; int i; Name25 b;} ComplexPerson; and ... ComplexPerson p; p.a=*(Name25*)name;...p.b=*(Name25*)name; ... and it will ever work for any contents of name in contrast to your favorite strcpy-solution: they is undefined for undefined name-contents. implicit struct-content-copy is well known ANSI C not a hack/trick/tweak/... – user411313 Sep 8 '10 at 22:31
The question being asked was essentially how to copy a string from one location to another. What you suggested didn't directly address this but instead, relied on another property of the language based on the example code to perform the action. Would you have suggested the same if the OP gave 2 buffers instead and asked the same question? This prompted my comment. – Jeff Mercado Sep 9 '10 at 4:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.