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

can I split a C string

Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Any help or link to standard regarding the above doubt is
aprreciated...
Regards,
Kiran
Jul 7 '08 #1
23 2786
KIRAN wrote:
Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Any help or link to standard regarding the above doubt is
aprreciated...
Regards,
Kiran
You can use a backslash to split any line in a C program.
1 Be careful that there are no invisible white space
characters between the backslash and the following newline.
2 The conventional way of splitting string literals is simply
to enclose the parts in quotes:

char * p = "Hello "
"World\n\r";

The backslash is mostly just used for lengthy macros.

--
pete
Jul 7 '08 #2
KIRAN wrote:
Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Any help or link to standard regarding the above doubt is
aprreciated...
Yes, you can do it (assuming the \ immediately precedes the
newline ending the first line). The relevant references in the
Standard are 5.1.1.2p2 (line splicing occurs in translation
phase 2) and 6.4.5p4 (string literals are recognized in phase 6).

In the Bad Old Days this was often the only way to write
very long string literals without using very long source lines.
But the 1989 ANSI Standard codified a better solution: String
literals that are adjacent in the source, with nothing but white
space and comments between them, are concatenated (5.1.1.2p6).
So you could write

char *p = "Hello "
" World\n\r";

or even

char *p = "Hell" /* sorry, bad word */
"o" /* ah, that's better */
/* leave extra spaces, just in case: */ " "
/* and now, the recipient of our greeting: */
"W" /* Gimme a wuh! */
"o" /* Gimme an oh! */
"r" /* Gimme an ahh! */
"l" /* Gimme an ell! */
"d" /* Gimme a dee! */
"\n" /* end of line */ "\r" /* just for luck */
;

with the same effect.

--
Er*********@sun.com
Jul 7 '08 #3
KIRAN wrote:
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Any help or link to standard regarding the above doubt is
aprreciated...
I think you can do that.
But you'll have 3 spaces between Hello and World.

Maybe it's better if you do it like this instead:

char * p = "Hello "
"World\r\n";
Jul 7 '08 #4
KIRAN <ki*****@gmail.comwrites:
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
In addition to the answers you've gotten (yes, you can, but there's a
much better way), why does your string end in "\n\r"? If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
and (b) it's rarely necessary to store the "\r" in memory, since "\n"
will be automatically translated as needed when written to a text
stream.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Jul 7 '08 #5
Keith Thompson wrote:
... If that's meant to be a Windows-style line ending,
then (a) it's "\r\n", not "\n\r",
Not necessarily. Old Macs used CR for end of line. Some
implementations allowed you to swap the more typical
values of \r and \n.

--
Peter
Jul 7 '08 #6
On Jul 7, 10:13*pm, Keith Thompson <ks...@mib.orgwrote:
KIRAN <kira...@gmail.comwrites:
can i split a C string like this?
char * p = "Hello \
* World\n\r";
is this according to standard?

In addition to the answers you've gotten (yes, you can, but there's a
much better way), why does your string end in "\n\r"? *
Actually I am writing portable code that runs on windows & ARM9 .
my print function will print

1. (WINDOWS)the string on console window(here "\r" is not
required(correct me if am wrong)

2. (ARM) the string on hyperterminal(UART)
>If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
and
Why?

(b) it's rarely necessary to store the "\r" in memory, since "\n"
will be automatically translated as needed when written to a text
stream.

--
Keith Thompson (The_Other_Keith) ks...@mib.org *<http://www.ghoti.net/~kst>
Nokia
"We must do something. *This is something. *Therefore, we must do this."
* * -- Antony Jay and Jonathan Lynn, "Yes Minister"
Jul 8 '08 #7
KIRAN <ki*****@gmail.comwrites:
On Jul 7, 10:13*pm, Keith Thompson <ks...@mib.orgwrote:
>KIRAN <kira...@gmail.comwrites:
can i split a C string like this?
char * p = "Hello \
* World\n\r";
is this according to standard?

In addition to the answers you've gotten (yes, you can, but there's a
much better way), why does your string end in "\n\r"? *

Actually I am writing portable code that runs on windows & ARM9 .
my print function will print

1. (WINDOWS)the string on console window(here "\r" is not
required(correct me if am wrong)
It's not required if you're writing to a stream that was opened in
text mode. I'm not sure what will happen if you write the '\r'
anyway. If you write "\n\r", it's likely that you'll get an extra
'\r' at the beginning of each line; this may or may not be harmless.
2. (ARM) the string on hyperterminal(UART)
I don't know enough about UARTs to know what will happen in that case.
>>If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
and

Why?
I don't know; it's just the way line endings are usually represented
on Windows. I don't know what "\n\r" (LF CR) in a Windows text file
means; for all I know it might be valid. Try a Windows newsgroup if
you want more information.

[...]

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
Nokia
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Jul 8 '08 #8
KIRAN said:
On Jul 7, 10:13 pm, Keith Thompson <ks...@mib.orgwrote:
>KIRAN <kira...@gmail.comwrites:
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

In addition to the answers you've gotten (yes, you can, but there's a
much better way), why does your string end in "\n\r"?

Actually I am writing portable code that runs on windows & ARM9 .
my print function will print

1. (WINDOWS)the string on console window(here "\r" is not
required(correct me if am wrong)

2. (ARM) the string on hyperterminal(UART)
>>If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
and

Why?
Because there was a teletype device in the 1960s on which moving the
carriage (the thing that carried the print head) from the right edge of
the paper to the left edge took twice as long as it took for a character
to arrive over the wire. To avoid dropping characters during the return of
the carriage from right to left, the designers split the task into two -
returning the carriage to the left edge of the paper, and feeding the
paper up a line - so that it would require two input characters to do this
one task, and thus the carriage would have time to do its thing without
any characters being dropped. (Essentially, the linefeed started life as a
padding character.)

CP/M uncritically adopted the CR/LF convention, wasting one byte per line
of text file. Recognising this, the Unix guys dropped the CR, whereas the
Mac folks dropped the LF. 86-DOS (QDOS) inherited the pair from CP/M, and
then was rebadged as MS-DOS, which was later rebadged as Windows. So even
in 2008, Windows users are stuck with this two-character newline encoding
several decades after the obsolescence of the hardware whose shortcomings
it was introduced to work around.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 8 '08 #9
On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:
Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Your current code is not valid. There's a space after \.
Jul 8 '08 #10
"Richard Heathfield" <rj*@see.sig.invalidwrote in message
news:NP*********************@bt.com...
KIRAN said:
>On Jul 7, 10:13 pm, Keith Thompson <ks...@mib.orgwrote:
>>KIRAN <kira...@gmail.comwrites:
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

In addition to the answers you've gotten (yes, you can, but there's a
much better way), why does your string end in "\n\r"?

Actually I am writing portable code that runs on windows & ARM9 .
my print function will print

1. (WINDOWS)the string on console window(here "\r" is not
required(correct me if am wrong)

2. (ARM) the string on hyperterminal(UART)
>>>If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
and

Why?

Because there was a teletype device in the 1960s on which moving the
carriage (the thing that carried the print head) from the right edge of
the paper to the left edge took twice as long as it took for a character
to arrive over the wire. To avoid dropping characters during the return of
the carriage from right to left, the designers split the task into two -
returning the carriage to the left edge of the paper, and feeding the
paper up a line - so that it would require two input characters to do this
one task, and thus the carriage would have time to do its thing without
any characters being dropped. (Essentially, the linefeed started life as a
padding character.)
If you're talking about the ASR33, this I think /required/ the two
characters, CR to move the head to the left, and LF to advance a line. They
were two different operations.

For convenience, whenever the user pressed Return, it was echoed back as CR
LF.
>
CP/M uncritically adopted the CR/LF convention, wasting one byte per line
of text file. Recognising this, the Unix guys dropped the CR, whereas the
Mac folks dropped the LF. 86-DOS (QDOS) inherited the pair from CP/M, and
then was rebadged as MS-DOS, which was later rebadged as Windows. So even
in 2008, Windows users are stuck with this two-character newline encoding
several decades after the obsolescence of the hardware whose shortcomings
it was introduced to work around.
I think Windows itself didn't help by requiring both CR and LF to be present
when sending text to the console, just like the teletype, otherwise lines
would either overwrite themselves (LF missing), or newlines would start
halfway across the screen (CR missing). So it was advisable to keep the CRLF
ending in a text file.
>On Jul 7, 10:13 pm, Keith Thompson <ks...@mib.orgwrote:
>>>If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
In text mode these will result in CR CR LF or CR LF CR, even more waste. And
if sent to a file, a lot of confusion for programs that expect specific line
endings.

--
Bartc
Jul 8 '08 #11
Bartc said:
"Richard Heathfield" <rj*@see.sig.invalidwrote in message
news:NP*********************@bt.com...
<snip>
>To avoid dropping characters during the return
of the carriage from right to left, the designers split the task into
two - returning the carriage to the left edge of the paper, and feeding
the paper up a line - so that it would require two input characters to
do this one task, and thus the carriage would have time to do its thing
without any characters being dropped. (Essentially, the linefeed started
life as a padding character.)

If you're talking about the ASR33, this I think /required/ the two
characters, CR to move the head to the left, and LF to advance a line.
They were two different operations.
Yes, that's a reasonable re-phrasing of part of what I said.

<snip>
--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 8 '08 #12
Op Tue, 8 Jul 2008 02:20:18 -0700 (PDT) schreef vi******@gmail.com:
On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:
>Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Your current code is not valid. There's a space after \.
Only when you use (of view it with) google groups ;-)
--
Coos

Jul 8 '08 #13
Coos Haak said:
Op Tue, 8 Jul 2008 02:20:18 -0700 (PDT) schreef vi******@gmail.com:
>On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:
>>Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Your current code is not valid. There's a space after \.

Only when you use (of view it with) google groups ;-)
No, the article source has the space there.

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 8 '08 #14
Op Tue, 08 Jul 2008 17:48:16 +0000 schreef Richard Heathfield:
Coos Haak said:
>Op Tue, 8 Jul 2008 02:20:18 -0700 (PDT) schreef vi******@gmail.com:
>>On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:
Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Your current code is not valid. There's a space after \.

Only when you use (of view it with) google groups ;-)

No, the article source has the space there.
Not when I see it in my news reader. The space I saw was in the posting in
google groups. I assumed from his account @gmail.com that the OP posted
there.

--
Coos

Jul 8 '08 #15
Coos Haak said:
Op Tue, 08 Jul 2008 17:48:16 +0000 schreef Richard Heathfield:
>Coos Haak said:
>>Op Tue, 8 Jul 2008 02:20:18 -0700 (PDT) schreef vi******@gmail.com:

On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:
Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?
Your current code is not valid. There's a space after \.

Only when you use (of view it with) google groups ;-)

No, the article source has the space there.

Not when I see it in my news reader. The space I saw was in the posting
in google groups. I assumed from his account @gmail.com that the OP
posted there.
Here's a hexdump which I knocked together to prove my point.

48 69 20 61 6C 6C 2C 0A 63 61 6E 20 69 20 73 70
6C 69 74 20 61 20 43 20 73 74 72 69 6E 67 20 6C
69 6B 65 20 74 68 69 73 3F 0A 63 68 61 72 20 2A
20 70 20 3D 20 22 48 65 6C 6C 6F 20 5C 0A 20 20
57 6F 72 6C 64 5C 6E 5C 72 22 3B 0A

It appears to prove yours instead! :-)

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 8 '08 #16
On 8 Jul 2008 at 8:21, Richard Heathfield wrote:
So even in 2008, Windows users are stuck with this two-character
newline encoding several decades after the obsolescence of the
hardware whose shortcomings it was introduced to work around.
Not unlike users of your beloved C89, who are stuck with the unsafe
gets() function several decades after its security flaws became clear to
the world. Of course, you're not a hypocrite - the two situations are
quite, quite different. Not.

Jul 8 '08 #17
vi******@gmail.com wrote:
KIRAN <kira...@gmail.comwrote:
>>
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

Your current code is not valid. There's a space after \.
Your newsreader is faulty. There is no such space. However most
output from the google newsreader is faulty in one way or another.

Get yourself a real newsreader (e.g. Thunderbird, from mozilla.com)
and a real newsserver. The following list indicates several
possibilities for the newsserver.

Some free news servers. I use motzarella, teranews and gmane.
<http://www.teranews.com (1 time charge) (free)
<http://news.aioe.org (free)
<http://dotsrc.org (free)
<http://www.x-privat.org/international.php (free)
<http://motzarella.org/?language=en (free)
<http://gmane.org/ (mail-lists via news) (free)
<http://www.newsfeeds.com/signup.htm (pay)
<http://www.individual.net/ (low pay)

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.
Jul 8 '08 #18
Richard Heathfield wrote:
Coos Haak said:
>schreef vi******@gmail.com:
>>KIRAN <kira...@gmail.comwrote:

can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

Your current code is not valid. There's a space after \.

Only when you use (of view it with) google groups ;-)

No, the article source has the space there.
You are exposing some fault in your reader system (or in mine). I
find no extra blank in the original message. Don't look at the
quoted line.

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

Jul 8 '08 #19
Richard Heathfield wrote:
Coos Haak said:
>schreef vi******@gmail.com:
>>KIRAN <kira...@gmail.comwrote:

can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

Your current code is not valid. There's a space after \.

Only when you use (of view it with) google groups ;-)

No, the article source has the space there.
You are exposing some fault in your reader system (or in mine). I
find no extra blank in the original message. Don't look at the
quoted line.

--
[mail]: Chuck F (cbfalconer at maineline dot net)
[page]: <http://cbfalconer.home.att.net>
Try the download section.

Jul 8 '08 #20
Richard Heathfield wrote:
Bartc said:
>"Richard Heathfield" <rj*@see.sig.invalidwrote in message
news:NP*********************@bt.com...

<snip>
>>To avoid dropping characters during the return
of the carriage from right to left, the designers split the task into
two - returning the carriage to the left edge of the paper, and feeding
the paper up a line - so that it would require two input characters to
do this one task, and thus the carriage would have time to do its thing
without any characters being dropped. (Essentially, the linefeed started
life as a padding character.)
If you're talking about the ASR33, this I think /required/ the two
characters, CR to move the head to the left, and LF to advance a line.
They were two different operations.

Yes, that's a reasonable re-phrasing of part of what I said.

<snip>

Just to be pedantic, typewriter technology of the time had 'carriage' to
be that piece of the machinery which held the platen (and paper) back
and forth behind the fixed print mechanism. Later designs have the
platen/paper system fixed and a print head moving back and forth over
the paper. This print mechanism is called a 'carrier'.

Some of the first terminals were based on the IBM Model B which had a
platen carriage. Later terminals were ASR-33 or IBM Selectric based
which had a print head 'carrier'.

--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
Jul 8 '08 #21
On Jul 8, 2:20*pm, vipps...@gmail.com wrote:
On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:Hi all,
can i split a C string like this?
char * p = "Hello \
* World\n\r";
is this according to standard?

Your current code is not valid. There's a space after \.
Is having space in string invalid?
Jul 9 '08 #22
ki*********@gmail.com said:
On Jul 8, 2:20 pm, vipps...@gmail.com wrote:
>On Jul 7, 6:24 pm, KIRAN <kira...@gmail.comwrote:Hi all,
can i split a C string like this?
char * p = "Hello \
World\n\r";
is this according to standard?

Your current code is not valid. There's a space after \.

Is having space in string invalid?
If you wish to split a logical line into two physical lines, you can do so
by placing a backslash and a newline into the logical line. You can't get
the same effect by placing a backslash, space, and newline.

As it turns out, the claim of a space appears to be mistaken.

But just so that you're clear about it, let's pretend that $ is your
system's way of representing a space (because $ is visible which makes it
a lot easier to talk about). You can split a C string like this:

char$*p$=$"Hello$\
$$$world\n\r";

but not like this:

char$*p$=$"Hello$\$
$$$world\n\r";

The \ must be the last thing on the line, you see (apart from the newline
itself, obviously).

--
Richard Heathfield <http://www.cpax.org.uk>
Email: -http://www. +rjh@
Google users: <http://www.cpax.org.uk/prg/writings/googly.php>
"Usenet is a strange place" - dmr 29 July 1999
Jul 9 '08 #23
On 8 Jul, 07:45, KIRAN <kira...@gmail.comwrote:
On Jul 7, 10:13*pm, Keith Thompson <ks...@mib.orgwrote:
KIRAN <kira...@gmail.comwrites:
<snip>
[...] why does your string end in "\n\r"? *

Actually I am writing portable code that runs on windows & ARM9 .
my print function will print

1. (WINDOWS)the string on console window(here "\r" is not
required(correct me if am wrong)
you are wrong.

2. (ARM) the string on hyperterminal(UART)
If that's meant
to be a Windows-style line ending, then (a) it's "\r\n", not "\n\r",
The idea is that "\n" sent to a stream that was opened in text mode
generates
the correct line ending sequence. That is \r\n for windows \n for Unix
and \r
for the Mac. I've no idea waht ARMs do. If you open the stream in
binary mode
the charcaters are untranslated. So if your ARM library is working
correctly
you *don't need* the \r.

long long ago I worked on a system where \r\n (and even \r\r\n) line
ending
was required. We used text streams and output the extra characters (I
think
the i/o system behaved in a Unix-like way). Now I'd probably open the
streams as binary and do the line endings "by hand".
--
Nick Keighley
Jul 9 '08 #24

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

Similar topics

5
by: Stu Cazzo | last post by:
I have the following: String myStringArray; String myString = "98 99 100"; I want to split up myString and put it into myStringArray. If I use this: myStringArray = myString.split(" "); it...
11
by: Carlos Ribeiro | last post by:
Hi all, While writing a small program to help other poster at c.l.py, I found a small inconsistency between the handling of keyword parameters of string.split() and the split() method of...
6
by: Senthil | last post by:
Code ---------------------- string Line = "\"A\",\"B\",\"C\",\"D\""; string Line2 = Line.Replace("\",\"","\"\",\"\""); string CSVColumns = Line2.Split("\",\"".ToCharArray());
19
by: David Logan | last post by:
We need an additional function in the String class. We need the ability to suppress empty fields, so that we can more effectively parse. Right now, multiple whitespace characters create multiple...
4
by: Itzik | last post by:
can i split this string string str = "aa a - bb-b - ccc" with this delimiter string del = " - " i want recieve 3 items : "aa a" , "bb-b" , "ccc"
4
by: Crirus | last post by:
There is a function somewhere to split a string with multiple tokens at a time? Say I have this: aaaa#bbbbb*ccccc$dddd I whould like to split it so the result whould be aaaa bbb
14
by: Ron | last post by:
Hello, I am trying to parse a string on the newline char. I guess vbCrLf is a string constant. How can I parse my string - data - on the newline char? .... data += ASCII.GetString(buffer, 0,...
3
by: Ben | last post by:
Hi I am creating a dynamic function to return a two dimensional array from a delimeted string. The delimited string is like: field1...field2...field3... field1...field2...field3......
5
by: kurt sune | last post by:
The code: Dim aLine As String = "cat" & vbNewLine & "dog" & vbNewLine & "fox" & vbNewLine Dim csvColumns1 As String() = aLine.Split(vbNewLine, vbCr, vbLf) Dim csvColumns2 As String() =...
2
by: Digital Fart | last post by:
following code would split a string "a != b" into 2 strings "a" and "b". but is there a way to know what seperator was used? string charSeparators = { "=", ">=", "<=" , "!=" }; string s1 =...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
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...

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.