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

exported templates in icpc

Hi all,

The intel c++ compiler supports exported templates but I was wondering a
bit about their used syntax. If I compare the syntax written in
strostroup's book then there is a difference. So I was wondering if the
following syntax proposed by intel is correct.

Thanks a lot
// file1.cpp
#include <stdio.h>
static void trace() { printf("File 1\n"); }
export template<class TT const& min(T const&, T const&);
int main() {
trace();
return min(2, 3);
}
// file2.cpp
#include <stdio.h>
static void trace() { printf("File 2\n"); }
export template<class TT const& min(T const &a, T const &b) {
trace();
return a<b? a: b;
}
Jan 7 '08 #1
18 1769
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
Hi all,

The intel c++ compiler supports exported templates but I was wondering a
bit about their used syntax. If I compare the syntax written in
strostroup's book then there is a difference. So I was wondering if the
following syntax proposed by intel is correct.

Thanks a lot

// file1.cpp
#include <stdio.h>
static void trace() { printf("File 1\n"); }
export template<class TT const& min(T const&, T const&);
int main() {
trace();
return min(2, 3);}

// file2.cpp
#include <stdio.h>
static void trace() { printf("File 2\n"); }
export template<class TT const& min(T const &a, T const &b) {
trace();
return a<b? a: b;

}

Did you check with Intel first?
This newsgroup doesn't cover specific compilers.
[OT]
The syntax looks correct, you do need the -export/-export_dir options.
[/OT]
Jan 7 '08 #2
Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
>Hi all,

The intel c++ compiler supports exported templates but I was wondering a
bit about their used syntax. If I compare the syntax written in
strostroup's book then there is a difference. So I was wondering if the
following syntax proposed by intel is correct.

Thanks a lot

// file1.cpp
#include <stdio.h>
static void trace() { printf("File 1\n"); }
export template<class TT const& min(T const&, T const&);
int main() {
trace();
return min(2, 3);}

// file2.cpp
#include <stdio.h>
static void trace() { printf("File 2\n"); }
export template<class TT const& min(T const &a, T const &b) {
trace();
return a<b? a: b;

}


Did you check with Intel first?
This newsgroup doesn't cover specific compilers.
[OT]
The syntax looks correct, you do need the -export/-export_dir options.
[/OT]
Yes I am aware of that, but according to strostroup there should not be
an export in file1.cpp. So the question was, is the syntax correct?
Hence, it belongs in this news group ;-)
Jan 7 '08 #3
On Jan 7, 1:33 pm, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
The intel c++ compiler supports exported templates but I
was wondering a bit about their used syntax. If I compare
the syntax written in strostroup's book then there is a
difference. So I was wondering if the following syntax
proposed by intel is correct.
Thanks a lot
// file1.cpp
#include <stdio.h>
static void trace() { printf("File 1\n"); }
export template<class TT const& min(T const&, T const&);
int main() {
trace();
return min(2, 3);}
// file2.cpp
#include <stdio.h>
static void trace() { printf("File 2\n"); }
export template<class TT const& min(T const &a, T const &b) {
trace();
return a<b? a: b;
}
Did you check with Intel first?
This newsgroup doesn't cover specific compilers.
[OT]
The syntax looks correct, you do need the -export/-export_dir options.
[/OT]
Yes I am aware of that, but according to strostroup there
should not be an export in file1.cpp. So the question was, is
the syntax correct? Hence, it belongs in this news group ;-)
I seem to recall that the wording finally adopted into the
standard didn't actually correspond to the intent. I think the
code you show corresponds to the intent---it seems logical,
anyway. Stroustrup probably wrote his book before having an
actual implementation at hand, and based himself soley on the
text in the standard.

Your code is conform with the latest draft. What Stroustrup
seems to be saying corresponds to the text in C++98 (which says
that "A template shall be exported only once in a program", and
that the definition must be exported).

--
James Kanze (GABI Software) mailto:ja*********@gmail.com
Conseils en informatique orient�e objet/
Beratung in objektorientierter Datenverarbeitung
9 place S�mard, 78210 St.-Cyr-l'�cole, France, +33 (0)1 30 23 00 34
Jan 7 '08 #4
On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
Hi all,
The intel c++ compiler supports exported templates but I was wondering a
bit about their used syntax. If I compare the syntax written in
strostroup's book then there is a difference. So I was wondering if the
following syntax proposed by intel is correct.
Thanks a lot
// file1.cpp
#include <stdio.h>
static void trace() { printf("File 1\n"); }
export template<class TT const& min(T const&, T const&);
int main() {
trace();
return min(2, 3);}
// file2.cpp
#include <stdio.h>
static void trace() { printf("File 2\n"); }
export template<class TT const& min(T const &a, T const &b) {
trace();
return a<b? a: b;
}
Did you check with Intel first?
This newsgroup doesn't cover specific compilers.
[OT]
The syntax looks correct, you do need the -export/-export_dir options.
[/OT]

Yes I am aware of that, but according to strostroup there should not be
an export in file1.cpp. So the question was, is the syntax correct?
Hence, it belongs in this news group ;-)

standard says:
An exported template need only be declared (not neccessarily defined)
in a translation unit in which it is instantiated.
....
An *implementation* may require that a translation unit containing the
definition of an exported template be compiled before any translation
unit containing an instantiation of that template.

And mostly because of that last sentence, you want to check with Intel
first.
Jan 7 '08 #5
James Kanze wrote:
On Jan 7, 7:06 pm, Salt_Peter <pj_h...@yahoo.comwrote:
>On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
>>Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:

[...]
>standard says:

In this case, you'll have to say which version. C++98 said one
thing, C++03 says another. In this case, what was actually
written in C++98 wasn't what the authors intended to say (and
described something that doesn't really make sense, and probably
isn't implementable). The wording was corrected in C++03.
Is there a place where I can get my hands on these standards?
--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jan 8 '08 #6
ciccio a écrit :
James Kanze wrote:
>On Jan 7, 7:06 pm, Salt_Peter <pj_h...@yahoo.comwrote:
>>On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
[...]
>>standard says:
In this case, you'll have to say which version. C++98 said one
thing, C++03 says another. In this case, what was actually
written in C++98 wasn't what the authors intended to say (and
described something that doesn't really make sense, and probably
isn't implementable). The wording was corrected in C++03.

Is there a place where I can get my hands on these standards?
I think that if you want the C/C++ standard (any version) you have to
pay (unlike many other languages including C# and Java). C++ is not a
community friendly language.

I wonder gcc is GPL so how do the guys working on g++ handle this ? Just
wondering......
>
>--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jan 8 '08 #7
On Jan 8, 10:11*am, jalina <jal...@nospam.please.comwrote:
>
I think that if you want the C/C++ standard (any version) you have to
pay (unlike many other languages including C# and Java). C++ is not a
community friendly language.
Has it occurred to you that perhaps the reason one has to pay for the
C++ standard is that a lot of very clever people put a lot of hard
work into producing it without a single mega-corporation bankrolling
them, unlike the case with C# and Java (although the term "standard"
is AFAIK inapplicable to Java)?
Many people consider the absence of aforementioned controlling
mega-corporation a point in favour of C++.

Jan 8 '08 #8
tragomaskhalos a écrit :
On Jan 8, 10:11 am, jalina <jal...@nospam.please.comwrote:
>I think that if you want the C/C++ standard (any version) you have to
pay (unlike many other languages including C# and Java). C++ is not a
community friendly language.

Has it occurred to you that perhaps the reason one has to pay for the
C++ standard is that a lot of very clever people put a lot of hard
work into producing it without a single mega-corporation bankrolling
them, unlike the case with C# and Java
Yes you are right, not one, but many. Most of people working on the
standard are from large companies - AT&T, Sun Microsystems, IBM, HP, TI,
Microsoft, Apple, Siemens, Intel, Motorola, Data General, Merrill Lynch,
Boeing.... And I doubt that they work during their free time on the
standard.

For me it means that C++ standard is not made by individuals but by
companies.

(although the term "standard"
is AFAIK inapplicable to Java)?
In my mind, standard does not mean it has been approved by one or
another organization (backup by one or another company)

Java failed to be approved by any organization for political reasons,
nevertheless the specification is a standard de facto (and can be
downloaded freely at http://java.sun.com/docs/books/jls)
Many people consider the absence of aforementioned controlling
mega-corporation a point in favour of C++.
Jan 8 '08 #9
On 2008-01-08 11:11, jalina wrote:
ciccio a écrit :
>James Kanze wrote:
>>On Jan 7, 7:06 pm, Salt_Peter <pj_h...@yahoo.comwrote:
On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
>On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
[...]
standard says:
In this case, you'll have to say which version. C++98 said one
thing, C++03 says another. In this case, what was actually
written in C++98 wasn't what the authors intended to say (and
described something that doesn't really make sense, and probably
isn't implementable). The wording was corrected in C++03.

Is there a place where I can get my hands on these standards?

I think that if you want the C/C++ standard (any version) you have to
pay (unlike many other languages including C# and Java). C++ is not a
community friendly language.

I wonder gcc is GPL so how do the guys working on g++ handle this ? Just
wondering......
Perhaps they buy a copy of the standard. I do not see what gcc being GPL
have anything to to with it.

BTW: Please do not quote signatures (that means you too ciccio).

--
Erik Wikström
Jan 8 '08 #10
On 2008-01-08 10:44, ciccio wrote:
James Kanze wrote:
>On Jan 7, 7:06 pm, Salt_Peter <pj_h...@yahoo.comwrote:
>>On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:

[...]
>>standard says:

In this case, you'll have to say which version. C++98 said one
thing, C++03 says another. In this case, what was actually
written in C++98 wasn't what the authors intended to say (and
described something that doesn't really make sense, and probably
isn't implementable). The wording was corrected in C++03.

Is there a place where I can get my hands on these standards?
You can buy them from iso.org, but I think it is cheaper to buy the ANSI
versions (they are ANSI standards too). Or you can get a draft of them
that lies as close in time as possible to the date they were
standardised (from http://www.open-std.org). You can also check with any
local standardisation organisations.

--
Erik Wikström
Jan 8 '08 #11
On 2008-01-08 08:02:05 -0500, jalina <ja****@nospam.please.comsaid:
>
Yes you are right, not one, but many. Most of people working on the
standard are from large companies - AT&T, Sun Microsystems, IBM, HP,
TI, Microsoft, Apple, Siemens, Intel, Motorola, Data General, Merrill
Lynch, Boeing.... And I doubt that they work during their free time on
the standard.

For me it means that C++ standard is not made by individuals but by companies.

(although the term "standard"
>is AFAIK inapplicable to Java)?

In my mind, standard does not mean it has been approved by one or
another organization (backup by one or another company)

Java failed to be approved by any organization for political reasons,
nevertheless the specification is a standard de facto (and can be
downloaded freely at http://java.sun.com/docs/books/jls)
Fascinating. You don't like the C++ standard because it's "not made by
individuals but by companies", but you like the Java standard which was
made by (gasp!) a company!

The "political reasons" that Java has not been standardized by any of
the traditional standards organizations is that Sun refused to allow it.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Jan 8 '08 #12
Erik Wikström wrote:
On 2008-01-08 10:44, ciccio wrote:
>James Kanze wrote:
>>On Jan 7, 7:06 pm, Salt_Peter <pj_h...@yahoo.comwrote:
On Jan 7, 7:33 am, ciccio <no_valid_em...@spam.comwrote:
Salt_Peter wrote:
>On Jan 7, 5:11 am, ciccio <no_valid_em...@spam.comwrote:
[...]
standard says:
In this case, you'll have to say which version. C++98 said one
thing, C++03 says another. In this case, what was actually
written in C++98 wasn't what the authors intended to say (and
described something that doesn't really make sense, and probably
isn't implementable). The wording was corrected in C++03.
Is there a place where I can get my hands on these standards?

You can buy them from iso.org, but I think it is cheaper to buy the ANSI
versions (they are ANSI standards too). Or you can get a draft of them
that lies as close in time as possible to the date they were
standardised (from http://www.open-std.org). You can also check with any
local standardisation organisations.
The Dead Tree BSI version is about $65 from Amazon/BN.

http://www.amazon.com/obidos/dp/0470846747
http://search.barnesandnoble.com/boo...SBN=0470846747

Jan 8 '08 #13
Pete Becker a écrit :
On 2008-01-08 08:02:05 -0500, jalina <ja****@nospam.please.comsaid:
>>
Yes you are right, not one, but many. Most of people working on the
standard are from large companies - AT&T, Sun Microsystems, IBM, HP,
TI, Microsoft, Apple, Siemens, Intel, Motorola, Data General, Merrill
Lynch, Boeing.... And I doubt that they work during their free time on
the standard.

For me it means that C++ standard is not made by individuals but by
companies.

(although the term "standard"
>>is AFAIK inapplicable to Java)?

In my mind, standard does not mean it has been approved by one or
another organization (backup by one or another company)

Java failed to be approved by any organization for political reasons,
nevertheless the specification is a standard de facto (and can be
downloaded freely at http://java.sun.com/docs/books/jls)

Fascinating. You don't like the C++ standard
Who did say that ? Because I make some remarks concerning the C++
standard does not mean I like it or don't like it. Please do not tell
thinks *I* like or don't like (so if I say "I can not see the moon
tonight" obviously I don't like the moon. Gosh)

I talk about java because this is the other language I play with and I
like apart from the C++.

because it's "not made by
individuals but by companies", but you like the Java standard which was
made by (gasp!) a company!

The "political reasons" that Java has not been standardized by any of
the traditional standards organizations is that Sun refused to allow it.
Sun tried to get certified the java language. See many articles (the
first I found googling:
http://www.windowsitpro.com/Article/...419/17419.html) ant I
remember reading a lot about it.
Jan 9 '08 #14
On Jan 8, 2:02 pm, jalina <jal...@nospam.please.comwrote:
tragomaskhalos a écrit :
On Jan 8, 10:11 am, jalina <jal...@nospam.please.comwrote:
I think that if you want the C/C++ standard (any version) you have to
pay (unlike many other languages including C# and Java). C++ is not a
community friendly language.
Has it occurred to you that perhaps the reason one has to pay for the
C++ standard is that a lot of very clever people put a lot of hard
work into producing it without a single mega-corporation bankrolling
them, unlike the case with C# and Java
Yes you are right, not one, but many. Most of people working
on the standard are from large companies - AT&T, Sun
Microsystems, IBM, HP, TI, Microsoft, Apple, Siemens, Intel,
Motorola, Data General, Merrill Lynch, Boeing.... And I doubt
that they work during their free time on the standard.
For me it means that C++ standard is not made by individuals
but by companies.
Technically, the C++ standard is "made" by the national bodies
contributing to ISO: ANSI, BSI, AFNOR, DIN... Practically, it's
made by a lot of individuals working together. Some are
supported by their companies, others not. And some of the
companies contributing the most are not monsters: you'll
regularly find 100% of the technical staff of EDG or Dinkumware
at a meeting. There are also people from Boost and from g++.
(although the term "standard"
is AFAIK inapplicable to Java)?
In my mind, standard does not mean it has been approved by one
or another organization (backup by one or another company)
Legally, it does, at least in some countries. The important
point here is, however, that the final decision rests in some
independent organization: it's not a specification of what one
particular company does, but a standard established
independently of what one particular company might decide.
Java failed to be approved by any organization for political
reasons, nevertheless the specification is a standard de facto
(and can be downloaded freely
athttp://java.sun.com/docs/books/jls)
It's specification, not a standard. Sun wanted it to be a
standard, but withdrew it (at least from ISO) because to make it
a standard, they would have to take opinions of others into
account. (Obviously, it's not all black and white: an ECMA
standard may involve more control by a single company than an
ISO standard, and Sun's process for Java is more open than, say,
that used to establish the original Windows API. But there is a
very definite line between the final decisions being made by an
independent organization, even with intensive collaboration from
a company, and the final decisions being made by a single
company, even if it does consult with other companies or
organizations.)

--
James Kanze (GABI Software) email:ja*********@gmail.com
Conseils en informatique orientée objet/
Beratung in objektorientierter Datenverarbeitung
9 place Sémard, 78210 St.-Cyr-l'École, France, +33 (0)1 30 23 00 34
Jan 9 '08 #15
On 2008-01-09 06:06:29 -0500, jalina <ja****@nospam.please.comsaid:
Sun tried to get certified the java language. See many articles (the
first I found googling:
http://www.windowsitpro.com/Article/...419/17419.html) ant I
remember reading a lot about it.
Sun tried to get ISO to rubberstamp Sun's version of a Java standard.
That's not what standards organizations do.

Sun also started out supporting ECMA's standardization effort for Java,
then at the first formal meeting, withdrew their support, leaving a
dozen attendees (including me) stuck in Raleigh/Durham with nothing to
do. (Literally stuck: eighteen inches of snow overnight, all
transportation shut down)

Neither of these can be accurately characterized as "failed for
political reasons." Both were the result of Sun wanting to have the
imprimatur of a standard but not wanting to go through a real
standardization process.

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Jan 9 '08 #16
Pete Becker wrote:
On 2008-01-09 06:06:29 -0500, jalina <ja****@nospam.please.comsaid:
>Sun tried to get certified the java language. See many articles (the
first I found googling:
http://www.windowsitpro.com/Article/...419/17419.html) ant I
remember reading a lot about it.

Sun tried to get ISO to rubberstamp Sun's version of a Java standard.
That's not what standards organizations do.
Now if only someone would explain that to Microsoft
(*cough*MS-OOXML*cough*).

Jan 9 '08 #17
Pete Becker a écrit :
On 2008-01-09 06:06:29 -0500, jalina <ja****@nospam.please.comsaid:
>Sun tried to get certified the java language. See many articles (the
first I found googling:
http://www.windowsitpro.com/Article/...419/17419.html) ant I
remember reading a lot about it.

Sun tried to get ISO to rubberstamp Sun's version of a Java standard.
That's not what standards organizations do.

Sun also started out supporting ECMA's standardization effort for Java,
then at the first formal meeting, withdrew their support, leaving a
dozen attendees (including me
I now understand your answers to my remarks when talking about Java (he
he, ECMA loves Microsoft)

) stuck in Raleigh/Durham with nothing to
do. (Literally stuck: eighteen inches of snow overnight, all
transportation shut down)

Neither of these can be accurately characterized as "failed for
political reasons." Both were the result of Sun wanting to have the
imprimatur of a standard but not wanting to go through a real
standardization process.
So the policy of Sun, according to you, is not going through a real
standardization process. I said Java was not "standardized" for
political reasons. You just confirm my sayings, thanks (whether it is
Sun's fault or others, I am not interested)
Jan 9 '08 #18
On 2008-01-09 14:37:22 -0500, jalina <ja****@nospam.please.comsaid:
Pete Becker a écrit :
>On 2008-01-09 06:06:29 -0500, jalina <ja****@nospam.please.comsaid:
>>Sun tried to get certified the java language. See many articles (the
first I found googling:
http://www.windowsitpro.com/Article/...419/17419.html) ant I
remember reading a lot about it.

Sun tried to get ISO to rubberstamp Sun's version of a Java standard.
That's not what standards organizations do.

Sun also started out supporting ECMA's standardization effort for Java,
then at the first formal meeting, withdrew their support, leaving a
dozen attendees (including me

I now understand your answers to my remarks when talking about Java (he
he, ECMA loves Microsoft)
No, Microsoft agreed to go through the normal ECMA process, which Sun
was not willing to do.
>
) stuck in Raleigh/Durham with nothing to
>do. (Literally stuck: eighteen inches of snow overnight, all
transportation shut down)

Neither of these can be accurately characterized as "failed for
political reasons." Both were the result of Sun wanting to have the
imprimatur of a standard but not wanting to go through a real
standardization process.
So the policy of Sun, according to you, is not going through a real
standardization process. I said Java was not "standardized" for
political reasons. You just confirm my sayings, thanks (whether it is
Sun's fault or others, I am not interested)
That's quite a long ways away from the usual meaning of "political reasons".

--
Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com) Author of "The
Standard C++ Library Extensions: a Tutorial and Reference
(www.petebecker.com/tr1book)

Jan 9 '08 #19

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

Similar topics

0
by: Jerome Lefebvre | last post by:
Hello, Hope this will interest a few. I been working with a friend on the problems given out during the "International Collegiate Programming Contest" (ICPC) http://icpc.baylor.edu/icpc/ ....
0
by: Richard | last post by:
In VB.NET, I am successfully calling C++ functions and subroutines that were exported from a DLL. Is it also possible in VB.NET to directly access a variable that was exported? Specifically, the...
1
by: amitdedhia | last post by:
Hi I am migrating a product code (originally written in VS2003) to VS2005. The application is written in VC++ (using MFC) and has mix of managed and unmanaged classes. It is a desktop based...
1
by: Mohammad Omer | last post by:
I am writing code for creating DLL using vs2k5. My project is using Crypto++ lib project, which has a function (ComputeHash), and with the same name of function I have written in project with a...
4
by: Anonymous | last post by:
Is it possible to have an ATL project that also contains win32 exported classes and functions?. I have a project (module) that needs to export/expose a few ATL objects, however, other modules...
1
by: Rahul | last post by:
Hi Everyone, I was looking at the link, http://www.comeaucomputing.com/4.0/docs/userman/export.html and it looks like the basic purpose of exporting templates is make sure that they are...
0
by: =?Utf-8?B?QU1lcmNlcg==?= | last post by:
Using File, Export Template, I have made some templates in VS 2005 of some VB windows apps, and now I want to delete them. Does anyone know how?
4
by: =?Utf-8?B?SmVzc2ljYQ==?= | last post by:
Hi All, I know that I can use the GetProcAddress to get the proc address of a global exported function from a WIn32 dll. But if I have an exported class in the dll, is there a way to...
0
by: Biswajyoti Pal | last post by:
IIT Kharagpur KSHITIJ 2009 THE ANNUAL TECHNO-MANAGEMENT FEST 29th Jan- 1st Feb THE OVERNITE ACM ICPC 2009 MULTI PROVINCIAL PROGRAMMING CONTEST ( http://overnite.ktj.in )
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.