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

floating point precision problem

hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?

does gcc/g++ compiler can give such type of high precision??

plz GIVE A SMALL CODE HOW CAN I ACHIEVE THAT ? which way, i have to
write the code??
Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.
Nov 14 '05 #1
21 12644

"syntax" <sa*****@yahoo.com.hk> wrote in message
news:5c**************************@posting.google.c om...
hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?

does gcc/g++ compiler can give such type of high precision??

plz GIVE A SMALL CODE HOW CAN I ACHIEVE THAT ? which way, i have to
write the code??
Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


Use lcc-win32.
For instance:
#include <qfloat.h>
int main(void)
{
qfloat p = 2;
printf("%1.80qf\n",sqrt(p));
return 0;
}
will produce:
1.414213562373095048801688724209698078569671875376 94807317667973799073
247846210704
Qfloats have a precision of 350 bits, approx 100 digits.

http://www.cs.virginia.edu/~lcc-win32
Nov 14 '05 #2
syntax wrote:

hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?

does gcc/g++ compiler can give such type of high precision??

plz GIVE A SMALL CODE HOW CAN I ACHIEVE THAT ? which way, i have to
write the code??

Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


As noted previously in this group, several high-precision libraries in
standard C have been written and are available for download.

A Google search of "high precision arithmetic in C" yields

http://crd.lbl.gov/~dhbailey/mpdist/mpdist.html

among about 126,000 hits.

--
Julian V. Noble
Professor Emeritus of Physics
jv*@lessspamformother.virginia.edu
^^^^^^^^^^^^^^^^^^
http://galileo.phys.virginia.edu/~jvn/

"God is not willing to do everything, and thereby take away our free wiil
and that share of glory that rightfully belongs to ourselves."
-- N. Machiavelli, "The Prince".
Nov 14 '05 #3
"syntax" <sa*****@yahoo.com.hk> wrote in message

i need to get high presion float numbers.

Generally C compilers will restrict themselves to types supported in
hardware, which are usually 32, 64 and sometimes 80 bits.
If the hardware has high-precison doubles, such as 128 bits, the compiler is
likely to provide an extension such as long long double. However such
hardware is not in common use.

A double is enough precision for almost all uses. If you need more precision
you need to emulate floating point in software (libraries are available to
do just that).
If you want to calculate PI to great precison, there are better algorithms
available that don't rely on arbitrary-precison floating point arithmetic.
Nov 14 '05 #4
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bv**********@newsg1.svr.pol.co.uk...
"syntax" <sa*****@yahoo.com.hk> wrote in message

i need to get high presion float numbers.
Generally C compilers will restrict themselves to types supported in
hardware, which are usually 32, 64 and sometimes 80 bits.
If the hardware has high-precison doubles, such as 128 bits, the compiler

is likely to provide an extension such as long long double. However such
hardware is not in common use.


Sun Sparcs are in pretty common use. They have 128-bit floating-point
format. And every compiler I know calls it long double.

P.J. Plauger
Dinkumware, Ltd.
http://www.dinkumware.com
Nov 14 '05 #5
syntax wrote:
hi,
i need to get high presion float numbers.
Could you give some background about what you need these for? Chances
are, your reasons for wanting this are not sound.
say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?
Yes, but not in standard C using any compiler I am aware of.
does gcc/g++ compiler can give such type of high precision??
C (and C++) compilers provide floating-point types that generally map
onto types supported by the hardware, so you should not be asking about
a particular compiler, but about a particular hardware platform.

I do not know any hardware platform that supports over 128 bits of
precision for floating point values.
plz GIVE A SMALL CODE HOW CAN I ACHIEVE THAT ? which way, i have to
write the code??
PLEASE DON'T SHOUT. Thank you.

In standard C, you can't. You might want to look at add-on libraries
(e.g., GMP, the GNU Multi-Precision Library). Or perhaps you don't even
want C ("bc" is nice for small high-precision numerical algorithms).
Question2: AT most how much precision can gcc/g++ AND VC++ Give?
Depends on the hardware. Usual sizes for floating point types are 32,
64, 80, and 128 bits. This is a long way short of the 80 digits you
claim you need.
can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


No.

Best regards,

Sidney

Nov 14 '05 #6
sa*****@yahoo.com.hk (syntax) writes:
hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?
<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>
Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


There are only three predefined floating-point types in standard C:
float, double, and long double. A compiler could provide, say,
"long long double" as an extension, but I don't know of any system
with direct hardware support for more than three sizes. Another
poster mentioned a "qfloat" type provided by one particular compiler,
but of course that's non-portable (which isn't necessarily a reason
not to use it).

If you want a more portable solution, there are a number of
extended-precision numeric libraries floating (sic) around. Probably
the best known is gmp, the GNU MP library, available from gnu.org.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://www.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #7
On Fri, 30 Jan 2004 20:32:00 GMT, in comp.lang.c , "P.J. Plauger"
<pj*@dinkumware.com> wrote:
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bv**********@newsg1.svr.pol.co.uk...
If the hardware has high-precison doubles, such as 128 bits, the compiler is
likely to provide an extension such as long long double. However such
hardware is not in common use.
Sun Sparcs are in pretty common use.


for some definitions of common !
I've not seen too many of them in kids bedrooms, internet cafes, etc.
They have 128-bit floating-point
format. And every compiler I know calls it long double.


Doesn't intel have a similar longish double? Hardware specific
question of course, offtopic here.
--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.angelfire.com/ms3/bchambless0/welcome_to_clc.html>
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 14 '05 #8
Keith Thompson wrote:
sa*****@yahoo.com.hk (syntax) writes:

i need to get high presion float numbers.
say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)
is it possible ?


<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>


No it isn't (just made up). AGMTA. However pi is not a repeating
decimal :-) Some of the best rational approximations I know for
pi are:

22 / 7
355 / 113
833719 / 265381
1146408 / 364913
4272943 / 1360120
5419351 / 1725033
63885804 / 20335483
74724506 / 23785549
80132847 / 25510582

with the error decreasing by about a factor of 4 or more for
those. They assume a correct value is 3.141492653589793.

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
Nov 14 '05 #9
thanks jacob navia

win lcc-win32 is working....

some of you are suggesting to use GMP library. i dont know even
whetehr my compiler has that library..my compiler is gcc/g++ 2.98
version.

in order to see whether GMP is there
i simply wrote $ ls /usr/lib/
and i found something like this (along with other libraries)

libgmp.a libgmp.so
libgmp.so.3
libgmp.so.3.1.1

do you think my compiler has GMP support?

if so can you plz give me code to calculate sqrt(2) upto 80
digits??.. so that i am be convinced that my GMP library works well.

i am working through telnet..Red Hat linux.7.0.1
does Higher version of linux( Red hat linux 9 ) supports GMP library
in-built??


Keith Thompson <ks***@mib.org> wrote in message news:<ln************@nuthaus.mib.org>...
sa*****@yahoo.com.hk (syntax) writes:
hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?


<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>
Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


There are only three predefined floating-point types in standard C:
float, double, and long double. A compiler could provide, say,
"long long double" as an extension, but I don't know of any system
with direct hardware support for more than three sizes. Another
poster mentioned a "qfloat" type provided by one particular compiler,
but of course that's non-portable (which isn't necessarily a reason
not to use it).

If you want a more portable solution, there are a number of
extended-precision numeric libraries floating (sic) around. Probably
the best known is gmp, the GNU MP library, available from gnu.org.

Nov 14 '05 #10

"Mark McIntyre" <ma**********@spamcop.net> wrote in message
news:29********************************@4ax.com...
On Fri, 30 Jan 2004 20:32:00 GMT, in comp.lang.c , "P.J. Plauger"
<pj*@dinkumware.com> wrote:
"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bv**********@newsg1.svr.pol.co.uk...
If the hardware has high-precison doubles, such as 128 bits, the compiler is likely to provide an extension such as long long double. However such
hardware is not in common use.


Sun Sparcs are in pretty common use.


for some definitions of common !
I've not seen too many of them in kids bedrooms, internet cafes, etc.
They have 128-bit floating-point
format. And every compiler I know calls it long double.


Doesn't intel have a similar longish double? Hardware specific
question of course, offtopic here.

Itanium supports a possible 128-bit long double IEEE format by combinations
of operations. The native long double supported by single
add/subtract/multiply operations (no divide) is 80 bits, as stored in
memory, plus 2 bits in register to protect against range overflow. As
measured by sizeof, the 80 bit long double may take up 128 bits in memory,
when padded for proper address alignment.
Some people claim that the parallel data types (4 floats or 2 doubles)
constitute a 128-bit type when thinking of AMD, but not when thinking of
Intel, where they came from.
Nov 14 '05 #11
"CBFalconer" <cb********@yahoo.com> wrote in message
news:40***************@yahoo.com...

... They assume a correct value is 3.141492653589793.

^
"Oops."
- Oliver Wendell Jones, Bloom County

--
Peter
Nov 14 '05 #12
CBFalconer <cb********@yahoo.com> writes:
Keith Thompson wrote:
sa*****@yahoo.com.hk (syntax) writes:

i need to get high presion float numbers.
say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)
is it possible ?
<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>


No it isn't (just made up). AGMTA.


"AGMTA"?
However pi is not a repeating decimal :-)


Right, but the OP said that pi = 22/7.0, so maybe he's not talking
about the usual mathematical constant.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://www.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #13
Please don't top-post. The convention here is to write your response
following any quoted text, and to delete anything not relevant to your
response.

A: Because it makes it more difficult to follow the discussion.
Q: Why is top-posting bad?

sa*****@yahoo.com.hk (syntax) writes:
Keith Thompson <ks***@mib.org> wrote in message
news:<ln************@nuthaus.mib.org>... [...]
extended-precision numeric libraries floating (sic) around. Probably
the best known is gmp, the GNU MP library, available from gnu.org.

thanks jacob navia

win lcc-win32 is working....

some of you are suggesting to use GMP library. i dont know even
whetehr my compiler has that library..my compiler is gcc/g++ 2.98
version.

[...] do you think my compiler has GMP support?


Probably, but the question isn't topical here, since it really isn't a
question about the C programming language. (Incidentally, gmp is a
library, so it isn't tied to the compiler; even if you don't have it,
you can download it, install it, and use it with your compiler;
instructions for doing so are also off-topic.)

If your system has gmp, it probably has documentation for it.

<OT>Try "info gmp".</OT>

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://www.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #14
sa*****@yahoo.com.hk (syntax) wrote in message news:<5c**************************@posting.google. com>...
thanks jacob navia

win lcc-win32 is working....

some of you are suggesting to use GMP library. i dont know even
whetehr my compiler has that library..my compiler is gcc/g++ 2.98
version.

in order to see whether GMP is there
i simply wrote $ ls /usr/lib/
and i found something like this (along with other libraries)

libgmp.a libgmp.so
libgmp.so.3
libgmp.so.3.1.1

do you think my compiler has GMP support?
Yes. But this is getting out of the realms of being a C question.

#include <gmp.h>

compile with gcc -lgmp

read the manual
http://www.swox.com/gmp/manual/

try it, and direct questions to gm*********@swox.com


if so can you plz give me code to calculate sqrt(2) upto 80
digits??.. so that i am be convinced that my GMP library works well.

i am working through telnet..Red Hat linux.7.0.1
does Higher version of linux( Red hat linux 9 ) supports GMP library
in-built??


Keith Thompson <ks***@mib.org> wrote in message news:<ln************@nuthaus.mib.org>...
sa*****@yahoo.com.hk (syntax) writes:
hi,
i need to get high presion float numbers.

say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)

is it possible ?


<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>
Question2: AT most how much precision can gcc/g++ AND VC++ Give?

can i write

double double double double x = 22/7.0 ? ... so that it could hold
highly precise result.


There are only three predefined floating-point types in standard C:
float, double, and long double. A compiler could provide, say,
"long long double" as an extension, but I don't know of any system
with direct hardware support for more than three sizes. Another
poster mentioned a "qfloat" type provided by one particular compiler,
but of course that's non-portable (which isn't necessarily a reason
not to use it).

If you want a more portable solution, there are a number of
extended-precision numeric libraries floating (sic) around. Probably
the best known is gmp, the GNU MP library, available from gnu.org.

Nov 14 '05 #15

"syntax" <sa*****@yahoo.com.hk> wrote in message

if so can you plz give me code to calculate sqrt(2) upto 80
digits??.. so that i am be convinced that my GMP library works well.

I'll tell you how to do it (the accepted method is a bit more sophisticated
than this, but this will work and you can understand it.

Have two floating-point variables, low, set to zero, and high, set to 2.0.
Obviously the square root of two must be between them.

Let's make a guess - halfway between (ie 1.0). Test by multiplying 1.0 by
1.0, and you will get the answer 1.0. This is below 2, so set low to 1.0.
Now make another guess - 1.5. 1.5 * 1.5 is above 2.0, so set high to 1.5. We
have now narrowed the root down to between 1.0 and 1.5.

Continue doing this until high and low are the same.

Actually there is a technical difficulty here in that it is just possible
that high and low may always be 1 bit off because of the way your
floating-point package works. So you could terminate when the difference
goes to less than some tiny value.
Nov 14 '05 #16

"P.J. Plauger" <pj*@dinkumware.com> wrote in message
Sun Sparcs are in pretty common use. They have 128-bit floating-
point format. And every compiler I know calls it long double.

So what do they use for 80 bits?
Nov 14 '05 #17
Keith Thompson wrote:
CBFalconer <cb********@yahoo.com> writes:
.... snip ...
No it isn't (just made up). AGMTA.


"AGMTA"?


All Great Minds Think Alike

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
Nov 14 '05 #18
"Keith Thompson" <ks***@mib.org> wrote in message
news:ln************@nuthaus.mib.org...
CBFalconer <cb********@yahoo.com> writes:
Keith Thompson wrote:
sa*****@yahoo.com.hk (syntax) writes:
>
> i need to get high presion float numbers.
> say, i need pi = 22/7.0 = 3.142857....(upto 80 digits)
> is it possible ?

<OT>
I hope you're aware that 22/7.0, however precisely you compute it, is
not a very accurate representation of the mathematical constant pi.
22/7.0 is 3.(142857)* (that's a repeating decimal, 3.142857142857...);
pi is 3.1415926535.... (The notation for a repeating decimal is
something I just made up.)
</OT>


No it isn't (just made up). AGMTA.


"AGMTA"?


I've seen it used as: Acting General Manager's Travel Allowance.

Perhaps it means Astute Googling Manifests Technical Answers?

Sadly, all I could find was a reference to All Goa Milk Traders Association.
Jayant Katkar was elected President by the way... <g>

--
Peter
Nov 14 '05 #19

"Malcolm" <ma*****@55bank.freeserve.co.uk> wrote in message
news:bv**********@newsg3.svr.pol.co.uk...

"P.J. Plauger" <pj*@dinkumware.com> wrote in message
Sun Sparcs are in pretty common use. They have 128-bit floating-
point format. And every compiler I know calls it long double.

So what do they use for 80 bits?

I don't think anyone has been motivated to tackle the support of 2 different
long double floating point types in a C compiler. Platforms which could
support that somewhat efficiently (e.g. Itanium) are rare enough that it
surely wouldn't be portable.
C allows long double to be anything from the same as double on up, with no
mandate for it for it to resemble one of the optional types defined by IEEE
standards.
Microsoft appears to be ruling out entirely the possibility of long double
differing from double in a large part of their sphere of influence.
Nov 14 '05 #20
CBFalconer <cb********@yahoo.com> writes:
Keith Thompson wrote:
CBFalconer <cb********@yahoo.com> writes:
... snip ...
No it isn't (just made up). AGMTA.


"AGMTA"?


All Great Minds Think Alike


ASDO

(And So Do Ours.)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://www.sdsc.edu/~kst>
Schroedinger does Shakespeare: "To be *and* not to be"
Nov 14 '05 #21
In article <bv**********@newsg3.svr.pol.co.uk> "Malcolm" <ma*****@55bank.freeserve.co.uk> writes:

"P.J. Plauger" <pj*@dinkumware.com> wrote in message
Sun Sparcs are in pretty common use. They have 128-bit floating-
point format. And every compiler I know calls it long double.

So what do they use for 80 bits?


As far as I know: nothing. That is not a standard type on the Sparc.
You would also have a hard time finding a floating point type with
80 bits mantissa on the Cray. The mantissa is either 48 bits or
96 bits.
--
dik t. winter, cwi, kruislaan 413, 1098 sj amsterdam, nederland, +31205924131
home: bovenover 215, 1025 jn amsterdam, nederland; http://www.cwi.nl/~dik/
Nov 14 '05 #22

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

Similar topics

4
by: Dave | last post by:
Hi folks, I am trying to develop a routine that will handle sphere-sphere and sphere-triangle collisions and interactions. My aim is to develop a quake style collision engine where a player can...
5
by: Anton Noll | last post by:
We are using Visual Studio 2003.NET (C++) for the development of our software in the fields digital signal processing and numerical acoustics. One of our programs was working correctly if we are...
687
by: cody | last post by:
no this is no trollposting and please don't get it wrong but iam very curious why people still use C instead of other languages especially C++. i heard people say C++ is slower than C but i can't...
24
by: j0mbolar | last post by:
C supports single precision floating point and double precision floating point but does it support fixed floating point? i've read that fixed floating point is more accurate than single precision...
1
by: Shreyas Kulkarni | last post by:
hi there, recently i have got a problem regarding calculation of sum of digits in a floating point or precision number. the weird behaviour of compiler/language is preventing me from calculating...
5
by: Steffen | last post by:
Hi, is it possible to have two fractions, which (mathematically) have the order a/b < c/d (a,b,c,d integers), but when (correctly) converted into floating point representation just have the...
15
by: michael.mcgarry | last post by:
Hi, I have a question about floating point precision in C. What is the minimum distinguishable difference between 2 floating point numbers? Does this differ for various computers? Is this...
10
by: Bryan Parkoff | last post by:
The guideline says to use %f in printf() function using the keyword float and double. For example float a = 1.2345; double b = 5.166666667; printf("%.2f\n %f\n", a, b);
137
by: mathieu.dutour | last post by:
Dear all, I want to do multiprecision floating point, i.e. I want to go beyond single precision, double precision and have quadruple precision, octuple precision and the like, and possibly with...
39
by: rembremading | last post by:
Hi all! The following piece of code has (for me) completely unexpected behaviour. (I compile it with gcc-Version 4.0.3) Something goes wrong with the integer to float conversion. Maybe somebody...
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: 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: 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
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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.