473,407 Members | 2,546 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,407 software developers and data experts.

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 2149
On Feb 15, 1:50 pm, "Neil" <neilwrit...@hotmail.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*********@hotmail.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...@hotmail.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...@hotmail.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*********@hotmail.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.invalidwrote:
Old Wolf said:
On Feb 15, 1:50 pm, "Neil" <neilwrit...@hotmail.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*****@inspire.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...@inspire.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
On Feb 14, 7:24 pm, Barry Schwarz <schwa...@doezl.netwrote:
On 14 Feb 2007 16:50:11 -0800, "Neil" <neilwrit...@hotmail.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.
It starts again from main(), There must be problem elsewhere.
-Neil

Feb 16 '07 #11
On Feb 15, 7:56 am, Ben Bacarisse <ben.use...@bsb.me.ukwrote:
"Neil" <neilwrit...@hotmail.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.- Hide quoted text -

- Show quoted text -
Ben your probably right, but I didn't want to go through whole
program, just the code clip I
mentioned. Thanks for the help, I'll try that....

-Neil
Feb 16 '07 #12
On Feb 14, 8:45 pm, "Beej" <b...@beej.uswrote:
On Feb 14, 4:50 pm, "Neil" <neilwrit...@hotmail.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
Beej the output section is a function that I left off, however the
program does begin
at the start, or the program crashes, from what I tried recently.
I'm trying to isolate the problem. thanks.
-Neil.

Feb 16 '07 #13
"Old Wolf" <ol*****@inspire.net.nzwrites:
On Feb 16, 12:46 pm, Ben Bacarisse <ben.use...@bsb.me.ukwrote:
>"Old Wolf" <oldw...@inspire.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.
Ah, OK. Crossed wires.
(Of course it is not a bad idea to add in checking, as
you suggested).
....but probably not in any way a fix for the OP's problem if it failed
with a four token string.

--
Ben.
Feb 16 '07 #14
On Feb 14, 7:24 pm, Barry Schwarz <schwa...@doezl.netwrote:
This is why you should not use // style comments in usenet.
Huh?....Didn't know that.

Barry, I'm using an old Borland Turbo C++ for DOS Compiler to write
this program, it's crashed a couple of times writing I what I think
what looks like elementry code.

If you don't intialize a pointer, but you declared it main() and just
leave it.
Does this present a problem after the program terminates?

Can two char pointers in an array of pointers point to each other
after the program terminates?

Thanks for tip..

-Neil

Feb 16 '07 #15
On Feb 15, 7:18 pm, "Neil" <neilwrit...@hotmail.comwrote:
On Feb 14, 7:24 pm, Barry Schwarz <schwa...@doezl.netwrote:
This is why you should not use // style comments in usenet.

Huh?....Didn't know that.

Barry, I'm using an old Borland Turbo C++ for DOS Compiler to write
this program, it's crashed a couple of times writing I what I think
what looks like elementry code.

If you don't intialize a pointer, but you declared it main() and just
leave it.
I ment inside main() :)

-Neil
Feb 16 '07 #16
On Feb 14, 9:00 pm, Christopher Layne <cla...@com.anodizedwrote:
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;
Huh? ........Better then mine..........but OK.
I'll try that.
Thanks Chris..
-Neil

Feb 16 '07 #17
On 15 Feb 2007 18:18:01 -0800, "Neil" <ne*********@hotmail.comwrote:
>On Feb 14, 7:24 pm, Barry Schwarz <schwa...@doezl.netwrote:
This is why you should not use // style comments in usenet.
Huh?....Didn't know that.

Barry, I'm using an old Borland Turbo C++ for DOS Compiler to write
this program, it's crashed a couple of times writing I what I think
what looks like elementry code.
Post a compilable example of the code that exhibits the behavior.
>
If you don't intialize a pointer, but you declared it main() and just
leave it.
Does this present a problem after the program terminates?
Unless you attempt to evaluate its value, the fact that a pointer is
uninitialized (technically called indeterminate) cannot be a problem.
>
Can two char pointers in an array of pointers point to each other
after the program terminates?
Unless you have a very strange operating system, after your program
terminates none of your objects exist. Since they no longer exist,
one of the many things they don't do is point anywhere, let alone to
each other.

While your program is running, it is still not possible for one char
pointer to point to another. By definition, a char pointer must point
to a char (if it points anywhere). It makes no difference whether the
pointers are in an array or not.
Remove del for email
Feb 16 '07 #18
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.

Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.

Thanks for all your help
-Neil
Feb 16 '07 #19
Neil said:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.

Barry, I would if I knew where the problem is in the program..
If you knew where the problem was, you wouldn't need to ask about it at
all. Since you don't know where the problem was, it makes sense to post
the whole program.
Obviouly the pointers are not causing the problem.
But you just said you don't know where the problem is.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at the above domain, - www.
Feb 16 '07 #20
Neil wrote:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.

Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.
We need a complete, minimal program that demonstrates the problem.
There three conditions there.

1. Complete - A program that can be cut and pasted in our compilers if
we choose, but at the very least we know is not missing something.

2. Minimal - The program reduced down as much as possible. That means
removing parts where you can to simplify it, but still produces the
failing behavior. Often the process will reveal the section with the
bug, but at least you will make the review process easier.

3. Demonstrates the problem - The code you give us should be able to
produce the exact condition you are experiencing. In addition, you need
to tell us what the program was supposed to do, and what it did
instead. If it is failing to compile, transcribe exactly or
(preferably) cut and paste the compiler messages.


Brian
Feb 16 '07 #21
Default User wrote:
Neil wrote:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.

Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.

We need a complete, minimal program that demonstrates the problem.
There three conditions there.

1. Complete - A program that can be cut and pasted in our compilers if
we choose, but at the very least we know is not missing something.

2. Minimal - The program reduced down as much as possible. That means
removing parts where you can to simplify it, but still produces the
failing behavior. Often the process will reveal the section with the
bug, but at least you will make the review process easier.

3. Demonstrates the problem - The code you give us should be able to
produce the exact condition you are experiencing. In addition, you need
to tell us what the program was supposed to do, and what it did
instead. If it is failing to compile, transcribe exactly or
(preferably) cut and paste the compiler messages.
Might be a good idea to save this reply for quickly responding to
similar situations in the future.

Feb 16 '07 #22
On Feb 16, 1:10 am, Richard Heathfield <r...@see.sig.invalidwrote:

Since you don't know where the problem was, it makes sense to post the
whole program.
Richard Heathfield
"Usenet is a strange place"

True...But I fixed the problem late night, knowing what you everyone
told me about pointers, It works just fine now.

Reason, why I didn't post the whole program was I didn't have copy of
it with me at work, I was sure that I could find a solution for it
soon, as I did.

Richard thanks for your help, Have a good weekend!!

-Neil

Feb 16 '07 #23
On Feb 16, 11:57 am, "Default User" <defaultuse...@yahoo.comwrote:
Neil wrote:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.
Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.

We need a complete, minimal program that demonstrates the problem.
There three conditions there.

1. Complete - A program that can be cut and pasted in our compilers if
we choose, but at the very least we know is not missing something.

2. Minimal - The program reduced down as much as possible. That means
removing parts where you can to simplify it, but still produces the
failing behavior. Often the process will reveal the section with the
bug, but at least you will make the review process easier.

3. Demonstrates the problem - The code you give us should be able to
produce the exact condition you are experiencing. In addition, you need
to tell us what the program was supposed to do, and what it did
instead. If it is failing to compile, transcribe exactly or
(preferably) cut and paste the compiler messages.

Brian

Brain Yeh right, I make a note of that next time, fortunatly I solved
the problem late last night. OK.


Feb 16 '07 #24
On Feb 16, 12:32 pm, "santosh" <santosh....@gmail.comwrote:
Default User wrote:
Neil wrote:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.
Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.
We need a complete, minimal program that demonstrates the problem.
There three conditions there.
1. Complete - A program that can be cut and pasted in our compilers if
we choose, but at the very least we know is not missing something.
2. Minimal - The program reduced down as much as possible. That means
removing parts where you can to simplify it, but still produces the
failing behavior. Often the process will reveal the section with the
bug, but at least you will make the review process easier.
3. Demonstrates the problem - The code you give us should be able to
produce the exact condition you are experiencing. In addition, you need
to tell us what the program was supposed to do, and what it did
instead. If it is failing to compile, transcribe exactly or
(preferably) cut and paste the compiler messages.

Might be a good idea to save this reply for quickly responding to
similar situations in the future.

OK ........will do,

Feb 16 '07 #25
Neil wrote:
On Feb 16, 1:10 am, Richard Heathfield <r...@see.sig.invalidwrote:
[quote markers added]
Since you don't know where the problem was, it makes sense to post the
whole program.
<snip>
True...But I fixed the problem late night, knowing what you everyone
told me about pointers, It works just fine now.
<snip>

Please use a standard quotation character like '>' for the text you
quote. Google Groups should quote the message by default. Why are you
removing them?

Feb 16 '07 #26
On Feb 16, 11:57 am, "Default User" <defaultuse...@yahoo.comwrote:
Neil wrote:
On Feb 15, 9:28 pm, Barry Schwarz <schwa...@doezl.netwrote:
Post a compilable example of the code that exhibits the behavior.
Barry, I would if I knew where the problem is in the program..
Obviouly the pointers are not causing the problem.

We need a complete, minimal program that demonstrates the problem.
There three conditions there.

1. Complete - A program that can be cut and pasted in our compilers if
we choose, but at the very least we know is not missing something.

2. Minimal - The program reduced down as much as possible. That means
removing parts where you can to simplify it, but still produces the
failing behavior. Often the process will reveal the section with the
bug, but at least you will make the review process easier.

3. Demonstrates the problem - The code you give us should be able to
produce the exact condition you are experiencing. In addition, you need
to tell us what the program was supposed to do, and what it did
instead. If it is failing to compile, transcribe exactly or
(preferably) cut and paste the compiler messages.

Brian

Damn.......I spelled your name wrong in the last post.
In C, your not allowed to misspell your variable names either,
Brian....Have a good weekend.

Neil :)

Feb 16 '07 #27
On Feb 16, 1:10 am, Richard Heathfield

But you just said you don't know where the problem is.

True Richard, I only suspected the pointers where at fault, However
Barry gave me some information that was vital in my search for the
problem, then I ruled out that the posted section of the program was
not fault. Thanks anyway.

-Neil.




Feb 16 '07 #28

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

Similar topics

11
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...
33
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
by: Albert | last post by:
how do i write a program that outputs its input if its input is more than 80 characters?
5
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...
20
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...
5
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...
69
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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
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...
0
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...
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...

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.