473,800 Members | 2,725 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Program repeats itself, pointer trouble I suspect.

Hello all!
I wrote program with a array of pointers, and I suspect they are
pointing at each other in the Do ...While loop.
Something is messed up with the increment variable word. A program
clip of what I'm talking about.

#include <stdio.h>
#include <string.h>

int main(void)
{
char string[50] = {"Have a nice day folks"};
char *line_ptr;
char *list[20] = { '\0' }; //Initialize the array of pointers to
NULL.
int word = 0;

line_ptr = strtok(string, " ");

do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);

return 0;
}
It's kinda weird, cause the program repeats itself when I run it. I
left out the output section, cause I know it works fine. In the
debugger it works OK. Is there a memory leak? Do you need to assign
pointers to NULL after you use them? Should I free up the memory from
the array of pointers before the program terminates? What is the best
way handle pointers after your done with them?

Thanks for all your help
Neil

Feb 15 '07 #1
27 2181
On Feb 15, 1:50 pm, "Neil" <neilwrit...@ho tmail.comwrote:
#include <stdio.h>
#include <string.h>

int main(void)
{
char string[50] = {"Have a nice day folks"};
char *line_ptr;
char *list[20] = { '\0' };
{ 0 } does the same thing and makes a bit more sense.
int word = 0;

line_ptr = strtok(string, " ");

do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);

return 0;}

It's kinda weird, cause the program repeats itself when I run it.
This program is fine. What do you mean by 'repeats itself' ?
This program generates no output.
In the debugger it works OK. Is there a memory leak?
No
>Do you need to assign pointers to NULL after you use them?
No
Should I free up the memory from the array of pointers before the
program terminates?
No
What is the best way handle pointers after your done with them?
Take no special action.
I left out the output section, cause I know it works fine.
Apparently not...

Feb 15 '07 #2
On 14 Feb 2007 16:50:11 -0800, "Neil" <ne*********@ho tmail.comwrote:
>Hello all!
I wrote program with a array of pointers, and I suspect they are
pointing at each other in the Do ...While loop.
Something is messed up with the increment variable word. A program
clip of what I'm talking about.

#include <stdio.h>
#include <string.h>

int main(void)
{
char string[50] = {"Have a nice day folks"};
char *line_ptr;
char *list[20] = { '\0' }; //Initialize the array of pointers to
NULL.
This is why you should not use // style comments in usenet.

If you want assign each of the 20 pointer in the array the NULL value,
use NULL. While 0 and '\0' will both work, they are visually
misleading. Someone might be tempted to think that the pointers point
to a char containing '\0'.
>int word = 0;

line_ptr = strtok(string, " ");

do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);

return 0;
}
It's kinda weird, cause the program repeats itself when I run it. I
left out the output section, cause I know it works fine. In the
Define repeat.

The archives are full of messages where the error was in the section
omitted by the poster because "it works." Post a compilable example
that demonstrates the behavior in question and let us help you find
the problem.
>debugger it works OK. Is there a memory leak? Do you need to assign
You cannot have a memory leak without dynamic allocation.
>pointers to NULL after you use them? Should I free up the memory from
Unless you test a pointer for NULL, you never need to reset it to
NULL.
>the array of pointers before the program terminates? What is the best
Any attempt to free memory that you did not allocate will invoke
undefined behavior.
>way handle pointers after your done with them?
The same way you handle an object of any other type when you are done
with it. In most cases, it is sufficient to simply not use it in any
subsequent code.
Remove del for email
Feb 15 '07 #3
On Feb 14, 4:50 pm, "Neil" <neilwrit...@ho tmail.comwrote:
line_ptr = strtok(string, " ");
Unless you're sure you're always going to have a token, you should
probably check line_ptr for NULL here, too.

Here's a compact form of that, if you don't mind assignments in your
expressions:

if ((p = strtok(string, " ")) != NULL) {
do {
printf("Token: %s\n", p);
} while ((p = strtok(NULL, " ")) != NULL);
}
do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);
Here is my output when I ran it.

'Have'
'a'
'nice'
'day'
'folks'

Looks fine to me. What's your output?

-Beej

Feb 15 '07 #4
Neil wrote:
#include <stdio.h>
#include <string.h>

int main(void)
{
char string[50] = {"Have a nice day folks"};
char *line_ptr;
char *list[20] = { '\0' }; *//Initialize the array of pointers to
Cleaner version:

#include <stdio.h>
#include <string.h>

enum constants {
STRING_MAX = 50,
WORD_MAX = 20
};

int main(void)
{
char string[STRING_MAX] = "Have a nice day folks";
char *word[WORD_MAX];
int i;

for (i = 0; i < WORD_MAX; i++) {
if ((word[i] = strtok(i ? NULL : string, " ")) == NULL)
break;
fprintf(stdout, "word[%d] = %s\n", i, word[i]);
}

return 0;
}

Feb 15 '07 #5
Old Wolf said:
On Feb 15, 1:50 pm, "Neil" <neilwrit...@ho tmail.comwrote:
>>
do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);

return 0;}

It's kinda weird, cause the program repeats itself when I run it.

This program is fine.
You think so? I don't think you read it carefully enough.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Feb 15 '07 #6
"Neil" <ne*********@ho tmail.comwrites :
#include <stdio.h>
#include <string.h>

int main(void)
{
char string[50] = {"Have a nice day folks"};
char *line_ptr;
char *list[20] = { '\0' }; /* Initialize the array of pointers to NULL.*/
int word = 0;

line_ptr = strtok(string, " ");

do
{
list[word] = line_ptr; /* MARK */
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);
Other than and hint in a reply to another reply, no one has pointed
out that you are in danger of accessing outside the bounds of your
array "list".

If it reasonable (is it ever?) to simply discard tokens that don't
fit, you can write:

if (word < 20) list[word] = line_ptr;

where I put /* MARK */ in your code.

I don't know of this is the source of your problem, because the
description is rather vague.

--
Ben.
Feb 15 '07 #7
On Feb 15, 7:19 pm, Richard Heathfield <r...@see.sig.i nvalidwrote:
Old Wolf said:
On Feb 15, 1:50 pm, "Neil" <neilwrit...@ho tmail.comwrote:
do
{
list[word] = line_ptr;
word++;
line_ptr = strtok(NULL," ");
} while (line_ptr != NULL);
return 0;}
It's kinda weird, cause the program repeats itself when I run it.
This program is fine.

You think so? I don't think you read it carefully enough.
By 'fine' I mean that the OP's code doesn't contain any bugs.
Of course I would not pedantic about the use of C99 features,
or bugs introduced by wordwrapping during the posting process.

Are you perhaps referring to the fact that the program might
break if its source is modified to introduce a bug, as
suggested by Ben Bacarisse?
If not, then please be more explicit.

Feb 15 '07 #8
"Old Wolf" <ol*****@inspir e.net.nzwrites:
Are you perhaps referring to the fact that the program might
break if its source is modified to introduce a bug, as
suggested by Ben Bacarisse?
I'm not seeing it. Can you post a correction to my message (or
explain it to me and I'll post a correction)?

--
Ben.
Feb 15 '07 #9
On Feb 16, 12:46 pm, Ben Bacarisse <ben.use...@bsb .me.ukwrote:
"Old Wolf" <oldw...@inspir e.net.nzwrites:
Are you perhaps referring to the fact that the program might
break if its source is modified to introduce a bug, as
suggested by Ben Bacarisse?

I'm not seeing it. Can you post a correction to my message (or
explain it to me and I'll post a correction)?
Your message appears to be saying that the program could
break if the input string were modified to have more than
20 words in it, which would be a bug. But the original
post only had 4 words in the string, so there is no problem.

(Of course it is not a bad idea to add in checking, as
you suggested).

Feb 16 '07 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
3531
by: Damon | last post by:
Hi, Can someone point out to me what's wrong with the code below? I'm trying to reuse the deleted pointer but it won't compile. My reason may be wrong, but I thought reusing the pointer would save the trouble of declaring a pointer to a string array. I also suspect there will be a problem of releasing memory in the way I'm using the array pointer and is toying with using a vector<std::string> instead. Anyway, thanks for any pointers...
33
4893
by: dough | last post by:
Is it possible in C to declare and initialize a pointer that points to itself? Why or why not?
26
1565
by: Albert | last post by:
how do i write a program that outputs its input if its input is more than 80 characters?
5
3423
by: shanknbake | last post by:
Here is my code. I've noted where the program crashes. I'm doing this program as a project for school. //cqueue.h file //HEADER FILE http://rafb.net/paste/results/Nh0aLB77.html -------------------------------------------------------------------- //cqueue.cpp file //IMPLEMENTATION OF cqueue CLASS http://rafb.net/paste/results/A2gXAr73.html
20
2624
by: Francine.Neary | last post by:
I am learning C, having fun with strings & pointers at the moment! The following program is my solution to an exercise to take an input, strip the first word, and output the rest. It works fine when you give it 2 or more words, but when there's only 1 word the results vary depending on whether it's on Windows or Linux: under MSVC it displays no output (as it should); under gcc/Linux it instead gives "Segmentation fault". Any ideas...
5
2375
by: andi | last post by:
Hello, I created a report in Acess2000 and now it repeats itself three times. At first I thought its a problem with the page margins but that would mean that empty or almost empty pages would follow the initial report! In my case the whole report repeats itself completely. I hope that someone can help me on that cheers
69
5596
by: raylopez99 | last post by:
They usually don't teach you in most textbooks I've seen that delegates can be used to call class methods from classes that are 'unaware' of the delegate, so long as the class has the same signature for the method (i.e., as below, int Square (int)). Here is an example to show that feature. Note class "UnAwareClass" has its methods Square and Cuber called by a class DelegateClass. This is because these methods in UnAwareClass have the...
0
10504
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10274
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10251
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10033
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9085
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7576
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5469
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3764
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2945
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.