473,378 Members | 1,333 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,378 software developers and data experts.

Clear Screen?

How do I clear the text from my screen, other than a bunch of \n's or
endl's?

Tim M.
Jul 19 '05 #1
18 59594
"Tim Mierzejewski" <ti******@yahoo.com> wrote...
How do I clear the text from my screen, other than a bunch of \n's or
endl's?


Please read FAQ 15.20. You can find FAQ
here: http://www.parashift.com/c++-faq-lite/

Victor
Jul 19 '05 #2
Tim Mierzejewski wrote:
How do I clear the text from my screen, other than a bunch of \n's or
endl's?


C++ can not clear the screen, as indicated in the FAQ Victor pointed you to.
However, you can ask the OS to do it for you. The most common ways to do
this are 'system("cls");' in Windows and system("clear");' in Linux. The
system function is defined in <process.h>

--
Unforgiven

"Not only do I not know the answer
I don't even know what the question is"
My world - Metallica

Jul 19 '05 #3

"Unforgiven" <ja*******@hotmail.com> wrote in message
news:bd************@ID-136341.news.dfncis.de...
Tim Mierzejewski wrote:
How do I clear the text from my screen, other than a bunch of \n's or
endl's?
C++ can not clear the screen, as indicated in the FAQ Victor pointed you

to.

Huh? C++ can do a lot of things using the OS specific libraries. Dont say
C++ cannot clear the screen. Instead, you should say standard C++ cannot
clear the screen.

However, you can ask the OS to do it for you. The most common ways to do
this are 'system("cls");' in Windows and system("clear");' in Linux. The
system function is defined in <process.h>

--
Unforgiven

"Not only do I not know the answer
I don't even know what the question is"
My world - Metallica

--
-Ashish
--------------------------------------------------------------------------
Hi! I'm a shareware signature! Send $5 if you use me, send $10 for manual!
http://www.123ashish.com http://www.softwarefreaks.com
Jul 19 '05 #4
"Ashish" <as*****@hotmail.com> wrote...

"Unforgiven" <ja*******@hotmail.com> wrote in message
news:bd************@ID-136341.news.dfncis.de...
Tim Mierzejewski wrote:
How do I clear the text from my screen, other than a bunch of \n's or
endl's?


C++ can not clear the screen, as indicated in the FAQ Victor pointed you

to.

Huh? C++ can do a lot of things using the OS specific libraries. Dont say
C++ cannot clear the screen. Instead, you should say standard C++ cannot
clear the screen.


That's the only C++ we speak of here.
Jul 19 '05 #5
"Ashish" <as*****@hotmail.com> wrote...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...

"Unforgiven" <ja*******@hotmail.com> wrote in message
news:bd************@ID-136341.news.dfncis.de...
> Tim Mierzejewski wrote:
> > How do I clear the text from my screen, other than a bunch of \n's or > > endl's?
>
> C++ can not clear the screen, as indicated in the FAQ Victor pointed you to.

Huh? C++ can do a lot of things using the OS specific libraries. Dont say C++ cannot clear the screen. Instead, you should say standard C++ cannot clear the screen.
That's the only C++ we speak of here.


Thats what I said too... but dont misguide the OP by saying that C++

cannot

Misguide?
do this, or can do that. Guide him to an appropriate newsgroup. I am sure
you understand that.


But in all honesty, C++ cannot clear the screen. It's some OS-
specific library call that does that. Or sequence of characters
output to console or ... But it is not a language thing. And,
by the way, while there exist extensions to the language created
by some eager compiler vendors, there is only one C++ -- Standard.

That's what we mean when we say "C++ cannot do that". Another
example: can C++ read files? Yes. Can C++ read JPEG files? Yes.
Can C++ read and display JPEG files? NO. Displaying them is not
a language feature. C++ cannot do that. Not standard, not any
other C++. The same with clearing the screen.

Guiding others to a particular newsgroup is a voluntary thing. If
you stop me in the street and ask whether I could give you a lift
to a town a thousand kilometres away, I'll probably say "No, sorry,
I cannot do that", but I am not obligated to explain to you all
possible options you have or direct you to a bus station. It is
up to you to figure that out. (Of course it might be mighty kind
of me to point you to a bus stop, and I _probably_ would do that
if I knew where you were going -- The OP just asked whether there
was a way to clear the screen except outputting newline characters,
and there isn't). See the point?

Anyway...

Victor
Jul 19 '05 #6

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...
>
> "Unforgiven" <ja*******@hotmail.com> wrote in message
> news:bd************@ID-136341.news.dfncis.de...
> > Tim Mierzejewski wrote:
> > > How do I clear the text from my screen, other than a bunch of
\n's
or
> > > endl's?
> >
> > C++ can not clear the screen, as indicated in the FAQ Victor
pointed you
> to.
>
> Huh? C++ can do a lot of things using the OS specific libraries.
Dont say
> C++ cannot clear the screen. Instead, you should say standard C++ cannot > clear the screen.

That's the only C++ we speak of here.


Thats what I said too... but dont misguide the OP by saying that C++

cannot

Misguide?
do this, or can do that. Guide him to an appropriate newsgroup. I am

sure you understand that.


But in all honesty, C++ cannot clear the screen. It's some OS-
specific library call that does that. Or sequence of characters
output to console or ... But it is not a language thing. And,
by the way, while there exist extensions to the language created
by some eager compiler vendors, there is only one C++ -- Standard.

That's what we mean when we say "C++ cannot do that". Another
example: can C++ read files? Yes. Can C++ read JPEG files? Yes.
Can C++ read and display JPEG files? NO. Displaying them is not
a language feature. C++ cannot do that. Not standard, not any
other C++. The same with clearing the screen.

Guiding others to a particular newsgroup is a voluntary thing. If
you stop me in the street and ask whether I could give you a lift
to a town a thousand kilometres away, I'll probably say "No, sorry,
I cannot do that", but I am not obligated to explain to you all
possible options you have or direct you to a bus station. It is
up to you to figure that out. (Of course it might be mighty kind
of me to point you to a bus stop, and I _probably_ would do that
if I knew where you were going -- The OP just asked whether there
was a way to clear the screen except outputting newline characters,
and there isn't). See the point?

Anyway...

Victor


I agree with you. But if you tell me that you cannot give me a lift to a
thown a thousand kilometers away doesnt mean that you should tell me that
there is no way I can go to that town. Thats what the other person did. He
said that C++ cannot... I am not saying that he or you HAVE to guide the OP
to an appropriate newsgroup, its voluntary ofcourse, but dont MISguide him
saying that it cannot be done. Get it?
--
-Ashish
--------------------------------------------------------------------------
Hi! I'm a shareware signature! Send $5 if you use me, send $10 for manual!
http://www.123ashish.com http://www.softwarefreaks.com
Jul 19 '05 #7

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...
>
> "Unforgiven" <ja*******@hotmail.com> wrote in message
> news:bd************@ID-136341.news.dfncis.de...
> > Tim Mierzejewski wrote:
> > > How do I clear the text from my screen, other than a bunch of
\n's
or
> > > endl's?
> >
> > C++ can not clear the screen, as indicated in the FAQ Victor
pointed you
> to.
>
> Huh? C++ can do a lot of things using the OS specific libraries.
Dont say
> C++ cannot clear the screen. Instead, you should say standard C++ cannot > clear the screen.

That's the only C++ we speak of here.


Thats what I said too... but dont misguide the OP by saying that C++

cannot

Misguide?
do this, or can do that. Guide him to an appropriate newsgroup. I am

sure you understand that.


But in all honesty, C++ cannot clear the screen. It's some OS-
specific library call that does that. Or sequence of characters


And those OS-specific libraries cannot be used using C++. I get it now.

Jul 19 '05 #8
"Ashish" <as*****@hotmail.com> wrote in message
news:bd************@ID-75446.news.dfncis.de...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
> "Ashish" <as*****@hotmail.com> wrote...
> >
> > "Unforgiven" <ja*******@hotmail.com> wrote in message
> > news:bd************@ID-136341.news.dfncis.de...
> > > Tim Mierzejewski wrote:
> > > > How do I clear the text from my screen, other than a bunch of \n's or
> > > > endl's?
> > >
> > > C++ can not clear the screen, as indicated in the FAQ Victor pointed you
> > to.
> >
> > Huh? C++ can do a lot of things using the OS specific libraries. Dont say
> > C++ cannot clear the screen. Instead, you should say standard C++ cannot
> > clear the screen.
>
> That's the only C++ we speak of here.
>
>

Thats what I said too... but dont misguide the OP by saying that C++

cannot

Misguide?
do this, or can do that. Guide him to an appropriate newsgroup. I am sure you understand that.


But in all honesty, C++ cannot clear the screen. It's some OS-
specific library call that does that. Or sequence of characters
output to console or ... But it is not a language thing. And,
by the way, while there exist extensions to the language created
by some eager compiler vendors, there is only one C++ -- Standard.

That's what we mean when we say "C++ cannot do that". Another
example: can C++ read files? Yes. Can C++ read JPEG files? Yes.
Can C++ read and display JPEG files? NO. Displaying them is not
a language feature. C++ cannot do that. Not standard, not any
other C++. The same with clearing the screen.

Guiding others to a particular newsgroup is a voluntary thing. If
you stop me in the street and ask whether I could give you a lift
to a town a thousand kilometres away, I'll probably say "No, sorry,
I cannot do that", but I am not obligated to explain to you all
possible options you have or direct you to a bus station. It is
up to you to figure that out. (Of course it might be mighty kind
of me to point you to a bus stop, and I _probably_ would do that
if I knew where you were going -- The OP just asked whether there
was a way to clear the screen except outputting newline characters,
and there isn't). See the point?

Anyway...

Victor


I agree with you. But if you tell me that you cannot give me a lift to a
thown a thousand kilometers away doesnt mean that you should tell me that
there is no way I can go to that town. Thats what the other person did.


No. Using the same analogy, the other person told you that you
can't get to another town in Victor's car. He didn't say that
clearing of the screen cannot be done. He said that clearing of
the screen cannot be done with C++. Get it?
He
said that C++ cannot...
And you think that C++ can? Show me.
I am not saying that he or you HAVE to guide the OP
to an appropriate newsgroup, its voluntary ofcourse, but dont MISguide him
saying that it cannot be done. Get it?


Do you understand the difference between "it cannot be done" and
"it cannot be done using C++ means"? Saying the latter does NOT
imply the former, and in no way is misguiding. Get it?
Jul 19 '05 #9

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote in message
news:bd************@ID-75446.news.dfncis.de...

"Victor Bazarov" <v.********@attAbi.com> wrote in message
news:vf************@corp.supernews.com...
"Ashish" <as*****@hotmail.com> wrote...
>
> "Victor Bazarov" <v.********@attAbi.com> wrote in message
> news:vf************@corp.supernews.com...
> > "Ashish" <as*****@hotmail.com> wrote...
> > >
> > > "Unforgiven" <ja*******@hotmail.com> wrote in message
> > > news:bd************@ID-136341.news.dfncis.de...
> > > > Tim Mierzejewski wrote:
> > > > > How do I clear the text from my screen, other than a bunch of
\n's
> or
> > > > > endl's?
> > > >
> > > > C++ can not clear the screen, as indicated in the FAQ Victor

pointed
> you
> > > to.
> > >
> > > Huh? C++ can do a lot of things using the OS specific libraries.

Dont
> say
> > > C++ cannot clear the screen. Instead, you should say standard
C++ cannot
> > > clear the screen.
> >
> > That's the only C++ we speak of here.
> >
> >
>
> Thats what I said too... but dont misguide the OP by saying that C++
cannot

Misguide?

> do this, or can do that. Guide him to an appropriate newsgroup. I am

sure
> you understand that.

But in all honesty, C++ cannot clear the screen. It's some OS-
specific library call that does that. Or sequence of characters
output to console or ... But it is not a language thing. And,
by the way, while there exist extensions to the language created
by some eager compiler vendors, there is only one C++ -- Standard.

That's what we mean when we say "C++ cannot do that". Another
example: can C++ read files? Yes. Can C++ read JPEG files? Yes.
Can C++ read and display JPEG files? NO. Displaying them is not
a language feature. C++ cannot do that. Not standard, not any
other C++. The same with clearing the screen.

Guiding others to a particular newsgroup is a voluntary thing. If
you stop me in the street and ask whether I could give you a lift
to a town a thousand kilometres away, I'll probably say "No, sorry,
I cannot do that", but I am not obligated to explain to you all
possible options you have or direct you to a bus station. It is
up to you to figure that out. (Of course it might be mighty kind
of me to point you to a bus stop, and I _probably_ would do that
if I knew where you were going -- The OP just asked whether there
was a way to clear the screen except outputting newline characters,
and there isn't). See the point?

Anyway...

Victor


I agree with you. But if you tell me that you cannot give me a lift to a
thown a thousand kilometers away doesnt mean that you should tell me

that there is no way I can go to that town. Thats what the other person did.


No. Using the same analogy, the other person told you that you
can't get to another town in Victor's car. He didn't say that
clearing of the screen cannot be done. He said that clearing of
the screen cannot be done with C++. Get it?
He
said that C++ cannot...


And you think that C++ can? Show me.
I am not saying that he or you HAVE to guide the OP
to an appropriate newsgroup, its voluntary ofcourse, but dont MISguide him saying that it cannot be done. Get it?


Do you understand the difference between "it cannot be done" and
"it cannot be done using C++ means"? Saying the latter does NOT
imply the former, and in no way is misguiding. Get it?


Oh, why am I arguing with you anyways? I reinstalled my OS and lost all the
news and email filters. Time to ignore you and Dan Poop again. Goodbye.
Jul 19 '05 #10


Ashish wrote:
Oh, why am I arguing with you anyways? I reinstalled my OS and lost all the
news and email filters. Time to ignore you and Dan Poop again. Goodbye.

Is there some reason you had three screens worth of quotes for this tiny
reply?

Brian Rodenborn
Jul 19 '05 #11

"Default User" <fi********@company.com> wrote in message
news:3E***************@company.com...


Ashish wrote:
Oh, why am I arguing with you anyways? I reinstalled my OS and lost all the news and email filters. Time to ignore you and Dan Poop again. Goodbye.

Is there some reason you had three screens worth of quotes for this tiny
reply?


Yes. A couple of reasons actually. First, it has become an off-topic thread
and anyone who cares to read off-topic posts should probably take the
efforts to scroll down to the bottom. Second, I am too lazy.
--
-Ashish
--------------------------------------------------------------------------
Hi! I'm a shareware signature! Send $5 if you use me, send $10 for manual!
http://www.123ashish.com http://www.softwarefreaks.com
Jul 19 '05 #12
On Fri, 27 Jun 2003 13:30:17 -0400, "Ashish" <as*****@hotmail.com>
wrote in comp.lang.c++:

"Unforgiven" <ja*******@hotmail.com> wrote in message
news:bd************@ID-136341.news.dfncis.de...
Tim Mierzejewski wrote:
How do I clear the text from my screen, other than a bunch of \n's or
endl's?


C++ can not clear the screen, as indicated in the FAQ Victor pointed you

to.

Huh? C++ can do a lot of things using the OS specific libraries. Dont say
C++ cannot clear the screen. Instead, you should say standard C++ cannot
clear the screen.


I guarantee you that I can show you several systems where C++,
standard or not, cannot clear the screen. For the simple reason that
there IS NO SCREEN. One of the reasons C++ does not support a screen
is that it does not require one.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++ ftp://snurse-l.org/pub/acllc-c++/faq
Jul 19 '05 #13

"Jack Klein" <ja*******@spamcop.net> wrote in message
news:sr********************************@4ax.com...
On Fri, 27 Jun 2003 13:30:17 -0400, "Ashish" <as*****@hotmail.com>
wrote in comp.lang.c++:

"Unforgiven" <ja*******@hotmail.com> wrote in message
news:bd************@ID-136341.news.dfncis.de...
Tim Mierzejewski wrote:
> How do I clear the text from my screen, other than a bunch of \n's or > endl's?

C++ can not clear the screen, as indicated in the FAQ Victor pointed
you to.

Huh? C++ can do a lot of things using the OS specific libraries. Dont say C++ cannot clear the screen. Instead, you should say standard C++ cannot
clear the screen.


I guarantee you that I can show you several systems where C++,
standard or not, cannot clear the screen. For the simple reason that
there IS NO SCREEN. One of the reasons C++ does not support a screen
is that it does not require one.


I am sorry, I had put my statement wrongly. But, since the OP asked about
clearing the screen, I assumed he had a screen (a computer monitor).
--
-Ashish
--------------------------------------------------------------------------
Hi! I'm a shareware signature! Send $5 if you use me, send $10 for manual!
http://www.123ashish.com http://www.softwarefreaks.com
Jul 19 '05 #14
you do not want to use process.h since it is not platform independant,
use stdlib.h instead

regards

pol jak

Unforgiven wrote:
Tim Mierzejewski wrote:
How do I clear the text from my screen, other than a bunch of \n's or
endl's?

C++ can not clear the screen, as indicated in the FAQ Victor pointed you to.
However, you can ask the OS to do it for you. The most common ways to do
this are 'system("cls");' in Windows and system("clear");' in Linux. The
system function is defined in <process.h>


Jul 19 '05 #15
> Is there some reason you had three screens worth of quotes for this tiny
reply?


Laziness.

I hate the griping about top posting in the newsgroup (which is a heinous
crime IMO and come the revolution, top-posters will be second against the
wall to be shot with me in the role of executioner).

But some people who gripe against top-posters commit the equally henious
crime of not pruning old conversation. Why should I have to download reams
of old conversation and then scroll through it just to see a reply? IMO they
are more guilty than top-posters (and again, come the revolution,
non-pruners will be first against the wall to be shot with me in the role of
executioner).

Stephen Howe
Jul 19 '05 #16
> I guarantee you that I can show you several systems where C++,
standard or not, cannot clear the screen. For the simple reason that
there IS NO SCREEN. One of the reasons C++ does not support a screen
is that it does not require one.


I agree with you. But lets go further...

Equally I can show you systems where there is NO SUCH THING AS A FILE. So
why does both C and C++ provide stdio/streams? That is an OS thing and IMO,
should be removed.

Also the assumption that dynamic memory is available via new/malloc() should
be removed. That also is an OS thing and IMO should be removed.

Stephen Howe
Jul 19 '05 #17

"Stephen Howe" <SP*******************@tnsofres.com> wrote in message
news:3e***********************@reading.news.pipex. net...
Is there some reason you had three screens worth of quotes for this tiny
reply?
Laziness.

I hate the griping about top posting in the newsgroup (which is a heinous
crime IMO and come the revolution, top-posters will be second against the
wall to be shot with me in the role of executioner).

But some people who gripe against top-posters commit the equally henious
crime of not pruning old conversation. Why should I have to download reams
of old conversation and then scroll through it just to see a reply? IMO

they are more guilty than top-posters (and again, come the revolution,
non-pruners will be first against the wall to be shot with me in the role of executioner).


No problem.... here I am, shoot me, spam my email address, hack my website,
DOS attack my webserver and do whatever you feel like.
I visit this newsgroup for advise and sometimes even help others. I dont
like top posters and non-pruners too. But when people weep over not pruning
posts in some stupid off topic post, it pisses me off. Please dont read this
message, it has nothing to do with C++.

-A

Jul 19 '05 #18


Ashish wrote:

"Default User" <fi********@company.com> wrote in message
news:3E***************@company.com...

Is there some reason you had three screens worth of quotes for this tiny
reply?


Yes. A couple of reasons actually. First, it has become an off-topic thread
and anyone who cares to read off-topic posts should probably take the
efforts to scroll down to the bottom. Second, I am too lazy.


Neither is a good excuse.

1. We can't really rail at the top-posters when people validate their
point by failing to edit the quotes down to a reasonable subset. If a
post is worth responding to, it's worth taking the time to do it
correctly. If not, then the better solution is to not reply at all. The
fact that it was OT does not matter.

2. I find it difficult to believe that it was that much work. I used to
use trn with vi as the editor, yet always managed to trim quotes. You
use a windows based newsreader, where you merely needed to drag down on
some text and hit delete.

Brian Rodenborn
Jul 19 '05 #19

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

Similar topics

4
by: NeoPhreak | last post by:
How would you clearn the screen in a console program??? Thanks NeoPhreak >.<
0
by: Peter | last post by:
I am just trying to learn python, to use for some fairly basic command line utilities which will run in either Windows/DOS or Linux. I cannot find a platform neutral way of manipulating the screen....
20
by: ritchie | last post by:
Hi, I am trying to clear the screen in my program. I am loking for something that will work on all compilers, especially Borland & MS Visual Studio 6. On Visual studio I used 'system("cls");'...
4
by: John | last post by:
Hi I have the following in a Perl script. I just want to "clear screen" but it does not work. I don't think I've got my client and server sides confused. Any ideas? <SCRIPT...
8
by: REDBAIT | last post by:
Hi Guys, Am using Windows 2000 and Dev C++ to create C programs. I'm trying to use clear screen and other graphic functions such as positioning output on screen. Have seen some documents that...
0
by: sajithamol | last post by:
I have an Applet that has three buttons on it, one being a clear screen button. I have it setup right now so it draws a rectangle the size of the applet and fills it with the background color. But...
2
by: owl | last post by:
and here I thought I was going to finally be able to change the world AND contribute back to python with my amazing clear screen extension - but I can't get it to work. ;( Copying from...
9
by: pbd22 | last post by:
Hi. Does anybody know how to issue a clear screen command like DOS "cls" in a telnet session? Thanks!
5
by: Kid Programmer | last post by:
Hello guys. I was wondering how you can clear the screen in a java program. Here is the code for my program: import javax.swing.SwingUtilities; import javax.swing.JFrame; import...
1
by: sganeshsvk | last post by:
i want to clear the screen command prompt for mysql in windows XP... In linux we use (CTRL + L) for clear the screen in mysql prompt.... i already use this command ( \c ) then ( \! clear ) for...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...

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.