473,378 Members | 1,510 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.

Display C in HTML

Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

Thanks a lot,
Adam

Jun 30 '07 #1
24 1878

"Adam" <ne**@snowstone.org.ukha scritto nel messaggio news:11*********************@c77g2000hse.googlegro ups.com...
Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

Thanks a lot,
Adam
That's not a question about C.
<ot>
Have you tried the <pretag? You'll still need to escape characters such as <, &, etc...
</ot>
Jun 30 '07 #2
Adam wrote, On 30/06/07 12:08:
Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
for information on why many will not consider your post topical, and dig
around further on the site for possible enlightenment with your problem
depending on what your real requirements are.
--
Flash Gordon
Jun 30 '07 #3
Adam said:
Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
The following code is online, in the sense that you can find it in this
'ere Usenet article. It doesn't display a complete page (because I
found that that was usually not what I wanted); rather, it wraps pre
and code tags around the code, and does the "usual HTML conversions",
so to speak. (At least, it does if you spec -c in the command line
args.)

I use it from within vim like this:

:.,+5!text2html -c

(where you replace 5 with however many lines the code is, less 1).

Here's the code:

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

int main(int argc, char **argv)
{
int code = 0;
int ch;
if(argc 1 && strcmp(argv[1], "-c") == 0)
{
code = 1;
}

if(!code)
{
printf("<p>\n");
}
else
{
printf("<pre><code>\n");
}
while((ch = getchar()) != EOF)
{
switch(ch)
{
case '&': printf("&amp;"); break;
case '<': printf("&lt;"); break;
case '>': printf("&gt;"); break;
case '"': printf("&quot;"); break;
case '\n': if(!code) { printf("</p>\n<p>\n"); }
else { putchar(ch); } break;
default: putchar(ch); break;
}
}
if(!code)
{
printf("</p>\n");
}
else
{
printf("</code></pre>\n");
}
return 0;
}
--
Richard Heathfield <http://www.cpax.org.uk>
Email: -www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jun 30 '07 #4
Adam wrote:
>
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
No converter needed. Just display the text.

--
<http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt>
<http://www.securityfocus.com/columnists/423>
<http://www.aaxnet.com/editor/edit043.html>
cbfalconer at maineline dot net

--
Posted via a free Usenet account from http://www.teranews.com

Jun 30 '07 #5

"Adam" <ne**@snowstone.org.ukha scritto nel messaggio news:11*********************@c77g2000hse.googlegro ups.com...
Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

Thanks a lot,
Adam
Try this:

#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
int status = 0;
int ch;
FILE *in, *out;
in = argc < 2 ? stdin : fopen(argv[1], "r");
if (in == NULL) {
fprintf(stderr, "Cannot open '%s' ", argv[2]);
perror("for input");
return EXIT_FAILURE;
}
out = argc < 3 ? stdout : fopen(argv[2], "w");
if (out == NULL) {
fprintf(stderr, "Cannot create or open '%s' ", argv[2]);
perror("for output");
fclose(in);
return EXIT_FAILURE;
}
fputs("<html><head></head><body><p><pre>", out);
do switch (ch = getc(in)) {
case '"': fputs("&quot;", out); continue;
case '&': fputs("&amp;", out); continue;
case '<': fputs("&lt;", out); continue;
case '>': fputs("&gt;", out); continue;
default : putc(ch, out); continue;
case EOF: if (ferror(in)) perror("Read error"); break;
} while (ch != EOF);
fputs("</pre></p></body></html>\n", out);
status = ferror(in) || ferror(out) ? EXIT_FAILURE : 0;
if (fclose(in) != 0) {
perror("Error closing input file");
status = EXIT_FAILURE;
}
if (fclose(out) != 0) {
perror("Error closing output file");
status = EXIT_FAILURE;
}
return 0;
}

HTH.
Jun 30 '07 #6

"CBFalconer" <cb********@yahoo.comha scritto nel messaggio news:46***************@yahoo.com...
Adam wrote:
>>
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

No converter needed. Just display the text.
<ot>
What do you expect to happen when you open a file containing less-
than signs with an HTML browser? Have you tried it?
</ot>
Jun 30 '07 #7
On 30 Jun, 13:43, Flash Gordon <s...@flash-gordon.me.ukwrote:
Adam wrote, On 30/06/07 12:08:
Hi,
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
for information on why many will not consider your post topical,
Yes, sorry, I guess it is a bit off-topic. Thanks for the link though.
I particularly like the (probably valid) whole section dedicated to a
defence of pedantry ;)
and dig around further on the site for possible enlightenment
with your problem
In my defence I did spend a while browsing around the c.l.c archives
but only found some dud links.

Thanks,
Adam

Jun 30 '07 #8
On 30 Jun, 13:09, "Army1987" <please....@for.itwrote:
"Adam" <n...@snowstone.org.ukha scritto nel messaggionews:11*********************@c77g2000hse. googlegroups.com...
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
That's not a question about C.
I guess you're right, sorry.
<ot>
Have you tried the <pretag? You'll still need to escape characters such as <, &, etc...
</ot>
Yes, but I was looking for something which does nice colouring/
formatting etc. Thanks to a private email I've been pointed at c2HTML
which looks perfect.

Thanks,
Adam

Jun 30 '07 #9

"Adam" <ne**@snowstone.org.ukwrote in message
news:11**********************@k29g2000hsd.googlegr oups.com...
On 30 Jun, 13:09, "Army1987" <please....@for.itwrote:
>"Adam" <n...@snowstone.org.ukha scritto nel
messaggionews:11*********************@c77g2000hse .googlegroups.com...
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
That's not a question about C.
I guess you're right, sorry.
><ot>
Have you tried the <pretag? You'll still need to escape characters such
as <, &, etc...
</ot>

Yes, but I was looking for something which does nice colouring/
formatting etc. Thanks to a private email I've been pointed at c2HTML
which looks perfect.
That's a perfectly topical subject, if somewhat unusual. Showing C code to
other programmers is an important part of what we do.
--
Free games and programming goodies.
http://www.personal.leeds.ac.uk/~bgy1mm

Jun 30 '07 #10
Adam wrote, On 30/06/07 15:32:
On 30 Jun, 13:43, Flash Gordon <s...@flash-gordon.me.ukwrote:
>Adam wrote, On 30/06/07 12:08:
>>Hi,
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
<snip>
>and dig around further on the site for possible enlightenment
with your problem

In my defence I did spend a while browsing around the c.l.c archives
but only found some dud links.
You will find the site does full syntax highlighting of C code on it and
there is a section on how the site is configured.
--
Flash Gordon
Jun 30 '07 #11
"Army1987" <pl********@for.itwrites:
"CBFalconer" <cb********@yahoo.comha scritto nel messaggio
news:46***************@yahoo.com...
>Adam wrote:
>>>
Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

No converter needed. Just display the text.

<ot>
What do you expect to happen when you open a file containing less-
than signs with an HTML browser? Have you tried it?
</ot>
<OT>
I expect it to display them correctly, *unless* the file name has a
".htm" or ".html" suffix or is otherwise marked as HTML.
</OT>

--
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"
Jun 30 '07 #12
In article <ln************@nuthaus.mib.org>,
Keith Thompson <ks***@mib.orgwrote:
>"Army1987" <pl********@for.itwrites:
>>No converter needed. Just display the text.
><ot>
What do you expect to happen when you open a file containing less-
than signs with an HTML browser? Have you tried it?
</ot>
><OT>
I expect it to display them correctly, *unless* the file name has a
".htm" or ".html" suffix or is otherwise marked as HTML.
</OT>
I was on the point of making the same reply, but then I noticed that
Army specified "an HTML browser", rather than "a web browser". I'm
not aware of any HTML-only browsers, so his point is only vacuously
correct.

A web browser should display a C program correctly if the file is
determined to be plain text, either by the server or by rules in the
browser.

-- Richard
--
"Consideration shall be given to the need for as many as 32 characters
in some alphabets" - X3.4, 1963.
Jun 30 '07 #13
Flash Gordon <sp**@flash-gordon.me.ukwrote:
# Adam wrote, On 30/06/07 12:08:
# Hi,
# >
# Does anyone know of an online C-to-HTML converter to display code
# nicely formatted in a browser?
#
# Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# for information on why many will not consider your post topical, and dig
# around further on the site for possible enlightenment with your problem
# depending on what your real requirements are.

What's interesting is your smart ass response wasted more electrons
than simply letting other people respond.

And why isn't the presentation of C code is not topical for comp.lang.c?
Try rereading posts from 1990 and see how the group used to be useful.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
I love the smell of commerce in the morning.
Jul 1 '07 #14

"SM Ryan" <wy*****@tango-sierra-oscar-foxtrot-tango.fake.orgwrote in
message news:13*************@corp.supernews.com...
Flash Gordon <sp**@flash-gordon.me.ukwrote:
# Adam wrote, On 30/06/07 12:08:
# Hi,
# >
# Does anyone know of an online C-to-HTML converter to display code
# nicely formatted in a browser?
#
# Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# for information on why many will not consider your post topical, and dig
# around further on the site for possible enlightenment with your problem
# depending on what your real requirements are.

What's interesting is your smart ass response wasted more electrons
than simply letting other people respond.

And why isn't the presentation of C code is not topical for comp.lang.c?
Try rereading posts from 1990 and see how the group used to be useful.
It is completely within the grasp of ISO C to do what you want, that is, if
HTML can be represented by C char arrays.

What code do you have so far?
--
WW
Jul 1 '07 #15
In article <Y6******************************@bt.com>,
Malcolm McLean <re*******@btinternet.comwrote:
>"Adam" <ne**@snowstone.org.ukwrote in message
news:11**********************@k29g2000hsd.googleg roups.com...
>Yes, but I was looking for something which does nice colouring/
formatting etc. Thanks to a private email I've been pointed at c2HTML
which looks perfect.
>That's a perfectly topical subject, if somewhat unusual.
You can colour within the C standard???
>Showing C code to
other programmers is an important part of what we do.
Is there at least an TR that specifies that gets() must be rendered
in extra-large blinking ?
--
"It is important to remember that when it comes to law, computers
never make copies, only human beings make copies. Computers are given
commands, not permission. Only people can be given permission."
-- Brad Templeton
Jul 1 '07 #16
Walter Roberson said:
In article <Y6******************************@bt.com>,
Malcolm McLean <re*******@btinternet.comwrote:
>>"Adam" <ne**@snowstone.org.ukwrote in message
news:11**********************@k29g2000hsd.google groups.com...
>>Yes, but I was looking for something which does nice colouring/
formatting etc. Thanks to a private email I've been pointed at
c2HTML which looks perfect.
>>That's a perfectly topical subject, if somewhat unusual.

You can colour within the C standard???
Sort of, yes. You can write a standard C program that will take C code
as input and produce as output a CSS to control colouring and an HTML
page with the input code translated into valid HTML, nicely formatted
and syntax coloured.
>>Showing C code to
other programmers is an important part of what we do.

Is there at least an TR that specifies that gets() must be rendered
in extra-large blinking ?
That reminds me of the Far Side cartoon of a (typically Larsonesque) man
emerging from the "Gents" in a restaurant. Above his head is a sign,
flashing the message "DIDN'T WASH HANDS".

<SFX: rummage rummage>

Ah! Here we are:

http://www.2000greetings.com/previewcard.htm?c=197

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 1 '07 #17
In article <nf******************************@bt.com>,
Richard Heathfield <rj*@see.sig.invalidwrote:
>Walter Roberson said:
>You can colour within the C standard???
>Sort of, yes. You can write a standard C program that will take C code
as input and produce as output a CSS to control colouring and an HTML
page with the input code translated into valid HTML, nicely formatted
and syntax coloured.
You can use a standard C program to construct HTML text that
*when interpreted by a program that uses system specific constructs
in an appropriately equipped and configured system* would
display nice colouration -- but the HTML text -itself- produced
by the C program isn't going to be syntax coloured without resorting
to system-specific extensions.

But then for any given program in any text-programmable language
(plus system-extensions plus appropriate hardware), one could write
a C program that produced that program. It doesn't seem to me that
the ability to write a C program that writes text in a different
programming language qualifies the text so produced as topical.
--
All is vanity. -- Ecclesiastes
Jul 1 '07 #18
Walter Roberson said:
In article <nf******************************@bt.com>,
Richard Heathfield <rj*@see.sig.invalidwrote:
>>Walter Roberson said:
>>You can colour within the C standard???
>>Sort of, yes. You can write a standard C program that will take C code
as input and produce as output a CSS to control colouring and an HTML
page with the input code translated into valid HTML, nicely formatted
and syntax coloured.

You can use a standard C program to construct HTML text that
*when interpreted by a program that uses system specific constructs
in an appropriately equipped and configured system* would
display nice colouration -- but the HTML text -itself- produced
by the C program isn't going to be syntax coloured without resorting
to system-specific extensions.
Yes, sorry, I was of course aware of this, but I should have made it
more explicit in my reply.
>
But then for any given program in any text-programmable language
(plus system-extensions plus appropriate hardware), one could write
a C program that produced that program. It doesn't seem to me that
the ability to write a C program that writes text in a different
programming language qualifies the text so produced as topical.
I'm not suggesting that the text so produced is topical. I'm suggesting
that the program that produces that text is (or at least can be)
topical.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 1 '07 #19
Adam <ne**@snowstone.org.ukwrote:
Hi,

Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?

Thanks a lot,
Adam
The jEdit editor -- http://www.jedit.org/ -- has a plug-in available
that can take your C source code and generate syntax highlighted HTML.
Jul 1 '07 #20
SM Ryan wrote, On 01/07/07 01:31:
Flash Gordon <sp**@flash-gordon.me.ukwrote:
# Adam wrote, On 30/06/07 12:08:
# Hi,
# >
# Does anyone know of an online C-to-HTML converter to display code
# nicely formatted in a browser?
#
# Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# for information on why many will not consider your post topical, and dig
# around further on the site for possible enlightenment with your problem
# depending on what your real requirements are.

What's interesting is your smart ass response wasted more electrons
than simply letting other people respond.
Actually, as I stated, if he trawled around on that site he would have
found enlightenment that it uses a C-to-HTML converter to display C code
in a web browser with nice syntax highlighting. It also says how it does
it and how to contact those who set it up.
And why isn't the presentation of C code is not topical for comp.lang.c?
Style wars are certainly topical.
Try rereading posts from 1990 and see how the group used to be useful.
It would be reading, not rereading, and I have enough to do without
doing that.
--
Flash Gordon
Jul 1 '07 #21
On Sat, 30 Jun 2007 11:08:53 -0000, Adam wrote:
>Does anyone know of an online C-to-HTML converter to display code
nicely formatted in a browser?
If your code is not confidential you could use http://rafb.net/paste/
Several stand-alone tools are also available, e.g.
http://www.andre-simon.de/
--
Roland Pibinger
"The best software is simple, elegant, and full of drama" - Grady Booch
Jul 1 '07 #22
"Wade Ward" <in*****@invalid.nyetwrote:
#
# "SM Ryan" <wy*****@tango-sierra-oscar-foxtrot-tango.fake.orgwrote in
# message news:13*************@corp.supernews.com...
# Flash Gordon <sp**@flash-gordon.me.ukwrote:
# # Adam wrote, On 30/06/07 12:08:
# # Hi,
# # >
# # Does anyone know of an online C-to-HTML converter to display code
# # nicely formatted in a browser?
# #
# # Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# # for information on why many will not consider your post topical, and dig
# # around further on the site for possible enlightenment with your problem
# # depending on what your real requirements are.
# >
# What's interesting is your smart ass response wasted more electrons
# than simply letting other people respond.
# >
# And why isn't the presentation of C code is not topical for comp.lang.c?
# Try rereading posts from 1990 and see how the group used to be useful.
# It is completely within the grasp of ISO C to do what you want, that is, if
# HTML can be represented by C char arrays.
#
# What code do you have so far?

I actually convert RTF to C. I could convert HTML if I wanted using textutil.

--
SM Ryan http://www.rawbw.com/~wyrmwif/
You hate people.
But I love gatherings. Isn't it ironic.
Jul 1 '07 #23
Flash Gordon <sp**@flash-gordon.me.ukwrote:
# SM Ryan wrote, On 01/07/07 01:31:
# Flash Gordon <sp**@flash-gordon.me.ukwrote:
# # Adam wrote, On 30/06/07 12:08:
# # Hi,
# # >
# # Does anyone know of an online C-to-HTML converter to display code
# # nicely formatted in a browser?
# #
# # Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# # for information on why many will not consider your post topical, and dig
# # around further on the site for possible enlightenment with your problem
# # depending on what your real requirements are.
# >
# What's interesting is your smart ass response wasted more electrons
# than simply letting other people respond.
#
# Actually, as I stated, if he trawled around on that site he would have
# found enlightenment that it uses a C-to-HTML converter to display C code
# in a web browser with nice syntax highlighting. It also says how it does
# it and how to contact those who set it up.

If you know an answer, why not just give an answer?

--
SM Ryan http://www.rawbw.com/~wyrmwif/
I have no idea what you just said.
I get that alot.
Jul 1 '07 #24
SM Ryan wrote, On 01/07/07 19:14:
Flash Gordon <sp**@flash-gordon.me.ukwrote:
# SM Ryan wrote, On 01/07/07 01:31:
# Flash Gordon <sp**@flash-gordon.me.ukwrote:
# # Adam wrote, On 30/06/07 12:08:
# # Hi,
# # >
# # Does anyone know of an online C-to-HTML converter to display code
# # nicely formatted in a browser?
# #
# # Almost certainly. Have a look at http://clc-wiki.net/wiki/intro_to_clc
# # for information on why many will not consider your post topical, and dig
# # around further on the site for possible enlightenment with your problem
# # depending on what your real requirements are.
# >
# What's interesting is your smart ass response wasted more electrons
# than simply letting other people respond.
#
# Actually, as I stated, if he trawled around on that site he would have
# found enlightenment that it uses a C-to-HTML converter to display C code
# in a web browser with nice syntax highlighting. It also says how it does
# it and how to contact those who set it up.

If you know an answer, why not just give an answer?
I could not be bothered to actually dig out the correct reference of an
answer, but the site is not so large or badly organised that it is
terribly difficult to find, so I just told the OP to dig around.
--
Flash Gordon
Jul 1 '07 #25

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

Similar topics

23
by: Mat | last post by:
<div id="container"> <div id="main"> <div id="header"> <p class="Address">123 Fake Street, </p> <p class="City">Crazy City, </p> <p class="Province">Ontario </p> <p class="PostalCode">H0H...
10
by: DettCom | last post by:
Hello, I would like to be able to display or hide fields based on whether a specific Yes/No radio button is selected. This is in conjunction with a posting a just made here in the same group...
19
by: dmiller23462 | last post by:
Hi guys....I have absolutely NO IDEA what I'm doing with Javascript but my end result is I need two text boxes to stay hidden until a particular option is selected....I've cobbled together the...
1
by: Marek Kurowski | last post by:
Yo! I design web browser in VC++. I need a web browser, in which I can display html in a litle changed form. The best control is CHtmlView with IWebBorwser2 (do you know other way?). But in...
2
by: ruby_bestcoder | last post by:
Hi Im having problem in firefox with display:none/block. I have essentially 3 li elements. In each element there are a few nested div:s. Clicking on one of the divs, makes another div to...
1
by: rbinington | last post by:
Hi, I am trying to write a DNN module that has the ability to insert articles into an article repository. I want the users to be able to move pages around and enter text into the FCKEditor. I...
4
by: rn5a | last post by:
A MS-Access DB has 3 tables - Teacher, Class & TeacherClass. The Teacher table has 2 columns - TeacherID & TeacherName (TeacherID being the primary key). The Class table too has 2 columns - ClassID...
15
by: cssExp | last post by:
hello, Rather than going on a wild explanation on what's the the problem, it'll be much quicker and easier if i let you look at it yourself, so I'll post my page source (actual contents taken out,...
2
by: wreed06 | last post by:
Hello, I have 2 problems. In my webpage, I have a dropdown list with a button that takes the user to a popup window specific to the option. I am using Firefox 2.0.0.13. I have successfully...
10
by: dkyadav80 | last post by:
<html> /// here what shoud be java script for: ->when script run then not display all input text field only display selection field. ->when user select other value for institute only this...
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
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
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: 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...
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...
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.