Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

could you help me about this problem?

3 views
Skip to first unread message

softwindow

unread,
Feb 27, 2007, 10:25:48 AM2/27/07
to
#include "stdio.h"
#include "malloc.h"
struct student{
int age;
char *nms;
struct student *next;
};
struct student *create(){
int ags=0,size=sizeof(struct student);
char *nms=" ";
struct student *head=NULL,*tail=NULL,*p=NULL;
scanf("%d%s",&ags,nms); //-------------------here!!!!!!
while(ags!=0){
p=(struct student * )malloc(size);
nms=(char *)malloc(20);
p->age=ags;
p->nms=nms;
p->next=NULL;
if(head==NULL){
head=p;
}else{
tail->next=p;
}
tail=p;
scanf("%d%s",&ags,nms);
}
return head;
}
int main(void) {
struct student *ptr=create();
while(ptr){
printf("%d====%s\n",ptr->age,ptr->nms);
free(ptr->nms);
free(ptr);
ptr=ptr->next;
}
}
************************************
i think that is no problem with it.but it doesn't work!
why?

Dave Hansen

unread,
Feb 27, 2007, 10:35:00 AM2/27/07
to
On Feb 27, 9:25 am, "softwindow" <softwin...@gmail.com> wrote:
[...]

> free(ptr);
> ptr=ptr->next;
> }}
>
> ************************************
> i think that is no problem with it.but it doesn't work!
> why?

You didn't give us much of a hint as to what you think "doesn't work"
means. But one obvious problem is the code above. Once you pass a
pointer to free, you can't then try to dereference it. Try something
like

tptr = ptr->next;
free(ptr);
ptr = tptr;

(with an appropriate declaration of tptr, of course.)

Regards,
-=Dave


Manish

unread,
Feb 27, 2007, 10:37:07 AM2/27/07
to
If there is no problem, then why do you say it doesn't work.

Sorry, I am not a mind reader, you will have to spell out what exactly
your issue is.

> why?


Manish

unread,
Feb 27, 2007, 10:40:35 AM2/27/07
to
On Feb 27, 10:25 am, "softwindow" <softwin...@gmail.com> wrote:
> #include "stdio.h"
> #include "malloc.h"
> struct student{
> int age;
> char *nms;
> struct student *next;};
>
> struct student *create(){
> int ags=0,size=sizeof(struct student);
> char *nms=" ";
> struct student *head=NULL,*tail=NULL,*p=NULL;
> scanf("%d%s",&ags,nms); //-------------------here!!!!!!

What is your input, do you have enough memory allocated for 'nms'?

softwindow

unread,
Feb 27, 2007, 10:49:12 AM2/27/07
to

******************************************
i have change code as your code,it is my fault;
now i find it throw error at the first " scanf("%d
%s",&ags,nms); //-------------------here
"
when i input "10 finy", it throw a error.

Manish

unread,
Feb 27, 2007, 11:13:18 AM2/27/07
to
> when i input "10 finy", it throw a error.- Hide quoted text -
>
> - Show quoted text -

okay now let's see the '10' gets stored in ags and 'finy' which needs
5 (4 bytes for "finy" and 1 extra byte for '\0') bytes of storage
space, you try to store it in 'nms' which has how much space ... ?
(Ans. 1 byte)

softwindow

unread,
Feb 27, 2007, 11:22:29 AM2/27/07
to
> (Ans. 1 byte)- 隐藏被引用文字 -
>
> - 显示引用的文字 -

oh!my god! yes,you are right!
thanks!

John Turner

unread,
Feb 27, 2007, 11:59:23 AM2/27/07
to
Manish wrote:
> "softwindow" <softwin...@gmail.com> wrote:

>> "Dave Hansen" <i...@hotmail.com> wrote:
>> i have change code as your code,it is my fault;
>> now i find it throw error at the first " scanf("%d
>> %s",&ags,nms); //-------------------here
>> "
>> when i input "10 finy", it throw a error.
>>
>
> okay now let's see the '10' gets stored in ags and 'finy' which needs
> 5 (4 bytes for "finy" and 1 extra byte for '\0') bytes of storage
> space, you try to store it in 'nms' which has how much space ... ?
> (Ans. 1 byte)
>


> char *nms=" ";

nms doesn't have any storage that he's allowed to write to. It points
to a string literal.

See: http://c-faq.com/decl/strlitinit.html

John

Keith Thompson

unread,
Feb 27, 2007, 4:14:18 PM2/27/07
to
"Manish" <mar...@gmail.com> writes:
[...]

> okay now let's see the '10' gets stored in ags and 'finy' which needs
> 5 (4 bytes for "finy" and 1 extra byte for '\0') bytes of storage
> space, you try to store it in 'nms' which has how much space ... ?
> (Ans. 1 byte)

The declaration of nms was

char *nms=" ";

so nms points to *two* bytes (' ' and '\0'). But, as someone else
already pointed out, you're not allowed to write to those bytes,
because they're part of a string literal. (You *might* get away with
it, but it's undefined behavior.)

Another comment: white space can make your code easier to read.
Rather than

char *nms=" ";

try:

char *nms = " ";

And so on.

--
Keith Thompson (The_Other_Keith) ks...@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"

pete

unread,
Feb 27, 2007, 4:31:56 PM2/27/07
to

/* BEGIN new.c */

#include <stdio.h>
#include <stdlib.h>

#define LENGTH 19

struct student {
int age;
char *nms;
struct student *next;
};

struct student *create(void)
{
struct student *head = NULL;
struct student *tail = NULL;
struct student *p = NULL;
int ags;
char *nms;

do {
p = malloc(sizeof *p);
if (p == NULL) {
puts("p == NULL");
exit(EXIT_FAILURE);
}
p -> next = NULL;
nms = malloc(LENGTH + 1);
if (nms == NULL) {
puts("nms == NULL");
exit(EXIT_FAILURE);
}
if (scanf("%d%s", &ags, nms) != 2) {
puts("scanf(\"%d%s\", &ags, nms) != 2");
exit(EXIT_FAILURE);
}
p -> age = ags;
p -> nms = nms;
if (head == NULL) {
head = p;
} else {
tail -> next = p;
}
tail = p;
} while (ags != 0);
return head;
}

int main(void)
{
struct student *next;
struct student *ptr = create();

while (ptr != NULL) {
next = ptr -> next;
printf("%d====%s\n", ptr -> age, ptr -> nms);
free(ptr -> nms);
free(ptr);
ptr = next;
}
return 0;
}

/* END new.c */

--
pete

softwindow

unread,
Feb 27, 2007, 8:09:07 PM2/27/07
to
On 2月28日, 上午5时14分, Keith Thompson <k...@mib.org> wrote:
> "Manish" <mar...@gmail.com> writes:
>
> [...]
>
> > okay now let's see the '10' gets stored in ags and 'finy' which needs
> > 5 (4 bytes for "finy" and 1 extra byte for '\0') bytes of storage
> > space, you try to store it in 'nms' which has how much space ... ?
> > (Ans. 1 byte)
>
> The declaration of nms was
>
> char *nms=" ";
>
> so nms points to *two* bytes (' ' and '\0'). But, as someone else
> already pointed out, you're not allowed to write to those bytes,
> because they're part of a string literal. (You *might* get away with
> it, but it's undefined behavior.)
>
> Another comment: white space can make your code easier to read.
> Rather than
>
> char *nms=" ";
>
> try:
>
> char *nms = " ";
>
> And so on.
>
> --
> Keith Thompson (The_Other_Keith) k...@mib.org <http://www.ghoti.net/~kst>

> San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
> "We must do something. This is something. Therefore, we must do this."
> -- Antony Jay and Jonathan Lynn, "Yes Minister"

**************************************
you say "you're not allowed to write to those bytes, because they're


part of a string literal"

but i try it,i can write bytes like follow:

char *nms=" ";
scanf("%s",nms);

you can try it.

Nelu

unread,
Feb 27, 2007, 8:54:48 PM2/27/07
to
softwindow wrote:

The standard says that the behavior is undefined if you attempt
to modify such a string. It is possible that *you* can do that
but that's not something you should rely on.

--
Ioan - Ciprian Tandau
tandau _at_ freeshell _dot_ org (hope it's not too late)
(... and that it still works...)

Keith Thompson

unread,
Feb 27, 2007, 9:02:04 PM2/27/07
to
"softwindow" <softw...@gmail.com> writes:
> On 2月28日, 上午5时14分, Keith Thompson <k...@mib.org> wrote:
[...]

>> The declaration of nms was
>>
>> char *nms=" ";
>>
>> so nms points to *two* bytes (' ' and '\0'). But, as someone else
>> already pointed out, you're not allowed to write to those bytes,
>> because they're part of a string literal. (You *might* get away with
>> it, but it's undefined behavior.)
[...]

Please trim quoted material. In particular, don't quote signatures
unless you're actually commenting on them.

> **************************************
> you say "you're not allowed to write to those bytes, because they're
> part of a string literal"
>
> but i try it,i can write bytes like follow:
>
> char *nms=" ";
> scanf("%s",nms);
>
> you can try it.

As I write above:

You *might* get away with it, but it's undefined behavior.

The most likely results of attempting to modify a string literal are
(a) your program immediately crashes, or (b) it "works", and the
string literal is modified.

Undefined behavior doesn't mean that the system is going to stop you
from doing it. It means the behavior is undefined; anything can
happen, so it's entirely up to you to avoid doing it.

See question 1.32 in the comp.lang.c FAQ, <http://www.c-faq.com/>.

--
Keith Thompson (The_Other_Keith) ks...@mib.org <http://www.ghoti.net/~kst>

Beej Jorgensen

unread,
Feb 28, 2007, 12:14:25 AM2/28/07
to
softwindow <softw...@gmail.com> wrote:
>char *nms=" ";
>scanf("%s",nms);
>
>you can try it.

Let me try it... This is what happens when I run the program and type
'b':

$ foo
b
Segmentation fault

So it's not exactly working for me. :)

In addition to what others are saying about the behavior in this
instance being undefined, the standard says that string literals may be
in read-only memory, and can actually be shared in memory, for instance:

#include <stdio.h>

int main(void)
{
char *a = "foobar";
char *b = "foobar";
char *c = "frobozz";

printf("a = %p\n", a);
printf("b = %p\n", b);
printf("c = %p\n", c);

return 0;
}

prints the following on my system:

a = 0x8048524
b = 0x8048524
c = 0x804852b

(Note a and b point to the same place.)

So, on my system, if it were allowed, modifying a's "foobar" would
effectively also modify b's; it's probably not what was desired.

-Beej

Peter Shaggy Haywood

unread,
Feb 28, 2007, 12:19:09 AM2/28/07
to
Groovy hepcat softwindow was jivin' on 27 Feb 2007 07:25:48 -0800 in
comp.lang.c.
could you help me about this problem?'s a cool scene! Dig it!

>#include "stdio.h"

That should be:

#include <stdio.h>

>#include "malloc.h"

No such header. It should be:

#include <stdlib.h>

>struct student{
> int age;
> char *nms;
> struct student *next;
>};
>struct student *create(){
> int ags=0,size=sizeof(struct student);
> char *nms=" ";

Here you create a string literal of one character length, resulting
in two bytes being allocated (one for your single character, and one
for the terminating '\0'). This may be placed in memory marked as
being readable but not writable. String literals are not modifiable.

> struct student *head=NULL,*tail=NULL,*p=NULL;
> scanf("%d%s",&ags,nms); //-------------------here!!!!!!

And here you attempt to read an arbitrarily long string (likely more
than one character) into the non-modifiable, one character long string
literal, thus attempting to not only modify a non-modifiable object,
but actually overflow that, writing to memory you don't own; possibly
memory that doesn't even exist! BANG! And your program crashes. Or it
goes on "working", but ends up doing weird things to your hard drive.
Or it makes demons fly out of your nose.
Had you read the FAQ list of this newsgroup or simply lurked here
for a while you would know that scanf() is not the best thing to use
for interactive input. It is customary, upon first entering a
newsgroup, to read a month or two of articles (lurk) before posting
and to seek out and read the newsgroup's FAQ, if it has one. Failing
to do so before posting is very rude! Please read the FAQ
(http://www.eskimo.com/~scs/C-faq/top.html) before posting any more.
What is the user supposed to be enterring anyhow? A prompt would be
helpful.

> while(ags!=0){
> p=(struct student * )malloc(size);

Don't cast the return from malloc(). Do check the return from
malloc().

> nms=(char *)malloc(20);

Don't cast the return from malloc(). Do check the return from
malloc().

> p->age=ags;
> p->nms=nms;

Here you copy the address of your string literal to your struct
member. Thus, your struct member will point to your string literal. No
other storage has been set aside, and no data copied.

> p->next=NULL;
> if(head==NULL){
> head=p;
> }else{
> tail->next=p;

A bit dodgy! I think it will probably work, since the else clause is
not executed first time around (because head == NULL first time
through the loop). But it doesn't look good to dereference tail above
the point where you actually set it to a useful value..., assuming p
actually does contain a useful value.

> }
> tail=p;
> scanf("%d%s",&ags,nms);

And again you attempt to write X characters (where X is some unknown
number) to a one character long string literal.

> }
> return head;
>}
>int main(void) {
> struct student *ptr=create();

Check the return value. It's always a good idea.

> while(ptr){
> printf("%d====%s\n",ptr->age,ptr->nms);
> free(ptr->nms);

And here you're trying to free memory that was not allocated by
malloc(), calloc() or realloc(). BANG! More undefined behaviour! More
nasal demons! Remember, the nms member of your structure points at a
string literal.

> free(ptr);
> ptr=ptr->next;

And once again, BANG! You're dereferencing ptr after freeing the
memory it points at.

> }

return 0;

>}
>************************************
>i think that is no problem with it.

Think again! There are many problems here. There may be some I
haven't spotted; after all, I only gave your code a cursory look. Even
so, I still found many serous errors.

> but it doesn't work!
>why?

Because it's so severely broken.

--

Dig the even newer still, yet more improved, sig!

http://alphalink.com.au/~phaywood/
"Ain't I'm a dog?" - Ronny Self, Ain't I'm a Dog, written by G. Sherry & W. Walker.
I know it's not "technically correct" English; but since when was rock & roll "technically correct"?

softwindow

unread,
Feb 28, 2007, 3:24:39 AM2/28/07
to
On 2月28日, 下午1时19分, phayw...@alphalink.com.au.NO.SPAM (Peter "Shaggy"

thank a lot!

thanks for your excellent explaining!


Keith Thompson

unread,
Feb 28, 2007, 5:11:55 AM2/28/07
to
"softwindow" <softw...@gmail.com> writes:
> On 2月28日, 下午1时19分, phayw...@alphalink.com.au.NO.SPAM (Peter "Shaggy"
> Haywood) wrote:
[134 lines deleted]

>
> thank a lot!
>
> thanks for your excellent explaining!

There was no need to repeat the whole thing.

pete

unread,
Feb 28, 2007, 7:36:51 AM2/28/07
to
Keith Thompson wrote:
>
> "softwindow" <softw...@gmail.com> writes:
> > On 2月28日, 下午1时19分, phayw...@alphalink.com.au.NO.SPAM (Peter "Shaggy"
> > Haywood) wrote:
> [134 lines deleted]
> >
> > thank a lot!
> >
> > thanks for your excellent explaining!
>
> There was no need to repeat the whole thing.

Sometimes I do that as a cheap and easy way of saving
the explanation in my email "Sent box".

--
pete

Richard Bos

unread,
Feb 28, 2007, 8:48:34 AM2/28/07
to
pete <pfi...@mindspring.com> wrote:

That's all very well for you, but it is anti-social to then continue to
post it to a newsgroup. All good mail- and news-readers have features to
save a post without sending it. The saving is not the problem; the
unsnipped sending is.

Richard

CBFalconer

unread,
Feb 28, 2007, 9:25:01 AM2/28/07
to
pete wrote:
> Keith Thompson wrote:
>> "softwindow" <softw...@gmail.com> writes:
>>
... snip ...

>>
>>> thanks for your excellent explaining!
>>
>> There was no need to repeat the whole thing.
>
> Sometimes I do that as a cheap and easy way of saving
> the explanation in my email "Sent box".

Hey, I have a patent on that. Cease and desist immediately, or you
will hear from my lawyers. (They also work for Microsoft. :-)

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>


Keith Thompson

unread,
Feb 28, 2007, 3:04:56 PM2/28/07
to

Fortunately, I don't recall ever seeing you do that here. Re-posting
an entire article to a newsgroup for your own minor convenience would
be anti-social. (E-mailing it directly to yourself would, of course,
be just fine.)

Old Wolf

unread,
Feb 28, 2007, 5:40:53 PM2/28/07
to
(Peter "Shaggy" Haywood) wrote:
> softwindow wrote:
> > nms=(char *)malloc(20);

> > p->nms=nms;
>
> Here you copy the address of your string literal to your struct
> member. Thus, your struct member will point to your string literal. No
> other storage has been set aside, and no data copied.

Actually he is setting the struct member to point to the malloc'd
space.

> > free(ptr->nms);
>
> And here you're trying to free memory that was not allocated by
> malloc(), calloc() or realloc(). BANG! More undefined behaviour! More
> nasal demons! Remember, the nms member of your structure points at a
> string literal.

So this is OK (ish).

0 new messages