473,385 Members | 1,478 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.

Practical applications on C++

Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of practical applications that are developed
using C++. Can u suggest any?
Jul 17 '08 #1
23 3775
On Jul 17, 11:11 am, anchitg...@gmail.com wrote:
Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of practical applications that are developed
using C++. Can u suggest any?
Hello,

It is hard to believe that you have done a thorough research. In any
case:

http://www.research.att.com/~bs/applications.html

Regards.
Jul 17 '08 #2
On Jul 17, 11:11*am, anchitg...@gmail.com wrote:
Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of *practical applications that are developed
using C++. Can u suggest any?
Are you for real?
Maybe I didn't understand your question correctly,
Are you looking for an example for systems that
were coded in C++?

Or are you looking for systems that Could ONLY
be written in C++?
Jul 17 '08 #3
an********@gmail.com wrote:
Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of practical applications that are developed
using C++. Can u suggest any?
Well I don't want to make you look too far, or at something you won't
have seen. How about Windows?

Andy
Jul 17 '08 #4
Andy Champ <no****@nospam.comwrites:
an********@gmail.com wrote:
>Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of practical applications that are developed
using C++. Can u suggest any?

Well I don't want to make you look too far, or at something you won't
have seen. How about Windows?
He said *practical*. :-)

sherm--

--
My blog: http://shermspace.blogspot.com
Cocoa programming in Perl: http://camelbones.sourceforge.net
Jul 17 '08 #5
Andy Champ wrote:
an********@gmail.com wrote:
>Hey, i have to prepare my training report on C++, but I couldn't find
any satisfactory names of practical applications that are developed
using C++. Can u suggest any?

Well I don't want to make you look too far, or at something you won't
have seen. How about Windows?
If you think of Windows 5 (2000/XP), than
that's almost entirely written in C, only
some marginal modules are written in C++.

Regards

M.
Jul 17 '08 #6
On Jul 18, 12:50*am, Mirco Wahab <wahab-m...@gmx.dewrote:
Well I don't want to make you look too far, or at something you won't
have seen. *How about Windows?

If you think of Windows 5 (2000/XP), than
that's almost entirely written in C, only
some marginal modules are written in C++.
It's a problem identifying system that were written in C++.
You can use a C++ compiler without using templates\classes.
You can use a C++ compiler without using OO.
So what is considered a "pure" C++ system?
I know that most of the systems in my company are
Hybrids of C++ and C how can you classify them?
Jul 20 '08 #7
On Jul 20, 9:03 am, ManicQin <Manic...@gmail.comwrote:
On Jul 18, 12:50 am, Mirco Wahab <wahab-m...@gmx.dewrote:
Well I don't want to make you look too far, or at
something you won't have seen. How about Windows?
If you think of Windows 5 (2000/XP), than
that's almost entirely written in C, only
some marginal modules are written in C++.
It's a problem identifying system that were written in C++.
You can use a C++ compiler without using templates\classes.
You can use a C++ compiler without using OO.
So what is considered a "pure" C++ system?
I know that most of the systems in my company are
Hybrids of C++ and C how can you classify them?
As hybrids of C++ and C?

I'm not sure what all this business of "if you don't use X, it's
not C++" is supposed to mean. That <vectorisn't C++, because
it doesn't use polymorphism? C++ provides a very large number
of features, to support many different paradigms. If you don't
use some feature, because some other paradigm is more
appropriate for the problem, you're still using C++.

--
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
Jul 20 '08 #8
On Jul 20, 10:58*am, James Kanze <james.ka...@gmail.comwrote:
I'm not sure what all this business of "if you don't use X, it's
not C++" is supposed to mean. *That <vectorisn't C++, because
it doesn't use polymorphism? *C++ provides a very large number
of features, to support many different paradigms. *If you don't
use some feature, because some other paradigm is more
appropriate for the problem, you're still using C++.
I agree with you but what I meant is if I write:
//snip
#include <stdio.h>
void main()
{
printf("hello world");
}
//
and compiling it in an c++ compiler is it a c++ program or a c? (I
gave a bit exaggerated example)
it's a c syntax but c++ will have no problem compiling it (except the
void main() warning )
Jul 22 '08 #9
ManicQin wrote:
I agree with you but what I meant is if I write:
//snip
#include <stdio.h>
void main()
{
printf("hello world");
}
//
and compiling it in an c++ compiler is it a c++ program or a c? (I
gave a bit exaggerated example)
it's a c syntax but c++ will have no problem compiling it (except the
void main() warning )
I'd use the heuristic approach: If you save this to manicqin.c,
then it's clearly a C program. Use manicqin.cpp, manicqin.cxx
or manicqin.cc - and I'd sure count it as a C++ program and
evaluate it as C++. Wouldn't you too?

Regards & scnr

Mirco
Jul 22 '08 #10
On Jul 22, 1:58*pm, Mirco Wahab <wa...@chemie.uni-halle.dewrote:
I'd use the heuristic approach: If you save this to manicqin.c,
then it's clearly a C program. Use manicqin.cpp, manicqin.cxx
or manicqin.cc - and I'd sure count it as a C++ program and
evaluate it as C++. Wouldn't you too?

Regards & scnr

Mirco
SO... ... ...
If I save it as a .cs can I call it C#? I'm just kidding.
With no other approach coming to my mind I will have to agree.
Jul 22 '08 #11
ManicQin wrote:
On Jul 22, 1:58 pm, Mirco Wahab <wa...@chemie.uni-halle.dewrote:
>I'd use the heuristic approach: If you save this to manicqin.c,
then it's clearly a C program. Use manicqin.cpp, manicqin.cxx
or manicqin.cc - and I'd sure count it as a C++ program and
evaluate it as C++. Wouldn't you too?
SO... ... ...
If I save it as a .cs can I call it C#? I'm just kidding.
No kidding here. Theres one example here:
http://perl.plover.com/obfuscated/bestever.pl

Save it as .ps and/or copy it directly to your (PS-)printer,
it'll be Postscript and print something there. Save it
as .pl and run it on the command line, it'll be a Perl
file and print (almost) the same on stdout.

So this *can* matter sometimes ;-)

Regards

M.
Jul 22 '08 #12
ManicQin wrote:
On Jul 20, 10:58 am, James Kanze <james.ka...@gmail.comwrote:
>I'm not sure what all this business of "if you don't use X, it's
not C++" is supposed to mean. That <vectorisn't C++, because
it doesn't use polymorphism? C++ provides a very large number
of features, to support many different paradigms. If you don't
use some feature, because some other paradigm is more
appropriate for the problem, you're still using C++.

I agree with you but what I meant is if I write:
//snip
#include <stdio.h>
void main()
{
printf("hello world");
}
//
and compiling it in an c++ compiler is it a c++ program or a c
It's not C++. In C++, main() returns int.
Jul 23 '08 #13
On Jul 23, 8:00*am, red floyd <no.spam.h...@example.comwrote:
It's not C++. *In C++, main() returns int.
so compiling:
int main() { return 0; }
in a C compiler would fail? (no...)
Or is it a new Hybrid? (instead of working C with classes ...
it's the new striped C++)

what about double main() { return 0.0; } (heresy!!!)
what language is it?

anyway I could give you other examples, they are all
not important. thanks to back compatibility the two languages
are bonded.
Jul 23 '08 #14
On Jul 22, 1:53 pm, ManicQin <Manic...@gmail.comwrote:
On Jul 20, 10:58 am, James Kanze <james.ka...@gmail.comwrote:
I'm not sure what all this business of "if you don't use X, it's
not C++" is supposed to mean. That <vectorisn't C++, because
it doesn't use polymorphism? C++ provides a very large number
of features, to support many different paradigms. If you don't
use some feature, because some other paradigm is more
appropriate for the problem, you're still using C++.
I agree with you but what I meant is if I write:
//snip
#include <stdio.h>
void main()
{
printf("hello world");}
//
and compiling it in an c++ compiler is it a c++ program or a
c? (I gave a bit exaggerated example) it's a c syntax but c++
will have no problem compiling it (except the void main()
warning )
Well, it's not a legal program in either language; both
languages require the return type of main to be int. (C allows
the compiler to support void main() as an extension, C++
requires a diagnostic. And if you change the return type to
int, falling of the end of a function which returns a value is
undefined behavior in C.)

Other than that: if you put the code in a file with an extension
.cpp or .cc, it's a C++ program. In such simple cases, you
can't tell the difference, but typical C won't compile with a
C++ compiler (and vice versa, of course).

--
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
Jul 23 '08 #15
On Jul 23, 8:35 am, ManicQin <Manic...@gmail.comwrote:
On Jul 23, 8:00 am, red floyd <no.spam.h...@example.comwrote:
It's not C++. In C++, main() returns int.
so compiling:
int main() { return 0; }
in a C compiler would fail? (no...)
If the compiler is conformant, it will output a diagnostic.
With the compilers I have, it either fails, or causes a
diagnostic about being anachronistic. Including if I compile it
as C (where a compiler is allowed to accept it without a
diagnostic).

--
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
Jul 23 '08 #16
On Jul 23, 10:26*am, James Kanze <james.ka...@gmail.comwrote:
but typical C won't compile with a
C++ compiler
?!? How come ?!?
maybe I just didn't understand you.
Isn't C++ fully back Compatible with C?
Jul 23 '08 #17
On 2008-07-23 04:26:11 -0400, James Kanze <ja*********@gmail.comsaid:
>
Well, it's not a legal program in either language; both
languages require the return type of main to be int. (C allows
the compiler to support void main() as an extension, C++
requires a diagnostic.
As far as I can see, both languages require the same thing here. I
don't have the C90 standard handy, but C99 says that main "shall be
defined with a return type of int ...". Similarly, in C++, main "shall
have a return type of int ...". In both cases, a return type of void is
a valid extension: a conforming compiler must issue a diagnostic, and
having done that, it can do whatever its implementor chooses.

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

Jul 23 '08 #18
On Wed, 23 Jul 2008 02:15:36 -0700, ManicQin wrote:
On Jul 23, 10:26Â*am, James Kanze <james.ka...@gmail.comwrote:
>but typical C won't compile with a
C++ compiler

?!? How come ?!?
maybe I just didn't understand you.
Isn't C++ fully back Compatible with C?
Not quite. See:

http://www.parashift.com/c++-faq-lit....html#faq-6.11

--
Lionel B
Jul 23 '08 #19
On Jul 23, 11:56 am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-07-23 04:26:11 -0400, James Kanze <james.ka...@gmail.comsaid:
Well, it's not a legal program in either language; both
languages require the return type of main to be int. (C
allows the compiler to support void main() as an extension,
C++ requires a diagnostic.
As far as I can see, both languages require the same thing
here. I don't have the C90 standard handy, but C99 says that
main "shall be defined with a return type of int ...".
Similarly, in C++, main "shall have a return type of int ...".
In both cases, a return type of void is a valid extension: a
conforming compiler must issue a diagnostic, and having done
that, it can do whatever its implementor chooses.
There's a subtle difference in the way the standards are worded.
In C++, an error requires a diagnostic unless it is specified to
be undefined behavior; in C, an error is undefined behavior
unless it is specified to require a diagnostic. Beyond that,
of course, there are some general statements: violating a
constraint on an operator in an expression requires a diagnostic
in C, because there is a general statement which says so, even
if there isn't a specific statement for each constraint. And in
both languages, if the standard neglects to specify the
behavior, it is undefined. But as far as I can tell, none of
these cases affect the return value of main.

Note too the difference in wording concerning main. In C++: "It
shall have a return type of type int, but otherwise its type is
implementation-defined." (The "otherwise" is, IMHO,
significant.) In C: "[...] or in some other
implementation-defined manner." In context, it's not really
clear if that statement applies just to the parameters, or to
the function signature in general. I'd interpret it as
applying to the function signature in general, but I can easily
understand the other interpretation as well. Regardless,
however; C doesn't require a diagnostic if you define main with
a signature which isn't supported; C++ does.

--
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
Jul 23 '08 #20
On 2008-07-23 17:50:50 -0400, James Kanze <ja*********@gmail.comsaid:
>
There's a subtle difference in the way the standards are worded.
In C++, an error requires a diagnostic unless it is specified to
be undefined behavior; in C, an error is undefined behavior
unless it is specified to require a diagnostic.
C99, 5.1.1.3 says:
A conforming implementation shall produce at least one diagnostic
message (identiï¬ed in
an implementation-deï¬ned manner) if a preprocessing translation unit or
translation unit
contains a violation of any syntax rule or constraint, even if the
behavior is also explicitly
speciï¬ed as undeï¬ned or implementation-deï¬ned. Diagnostic messages need not be
produced in other circumstances. [footnote omitted]

Beyond that,
of course, there are some general statements: violating a
constraint on an operator in an expression requires a diagnostic
in C, because there is a general statement which says so, even
if there isn't a specific statement for each constraint. And in
both languages, if the standard neglects to specify the
behavior, it is undefined. But as far as I can tell, none of
these cases affect the return value of main.

Note too the difference in wording concerning main. In C++: "It
shall have a return type of type int, but otherwise its type is
implementation-defined." (The "otherwise" is, IMHO,
significant.) In C: "[...] or in some other
implementation-defined manner." In context, it's not really
clear if that statement applies just to the parameters, or to
the function signature in general. I'd interpret it as
applying to the function signature in general, but I can easily
understand the other interpretation as well. Regardless,
however; C doesn't require a diagnostic if you define main with
a signature which isn't supported; C++ does.
It's a constraint violation, even though the behavior is explicitly
specified as implementation-defined. So 5.1.1.3 requires a diagnostic.

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

Jul 24 '08 #21
On Jul 24, 2:03 am, Pete Becker <p...@versatilecoding.comwrote:
On 2008-07-23 17:50:50 -0400, James Kanze <james.ka...@gmail.comsaid:
There's a subtle difference in the way the standards are
worded. In C++, an error requires a diagnostic unless it is
specified to be undefined behavior; in C, an error is
undefined behavior unless it is specified to require a
diagnostic.
C99, 5.1.1.3 says:
A conforming implementation shall produce at least one
diagnostic message (identified in an implementation-defined
manner) if a preprocessing translation unit or translation
unit contains a violation of any syntax rule or constraint,
even if the behavior is also explicitly specified as
undefined or implementation-defined. Diagnostic messages
need not be produced in other circumstances. [footnote
omitted] Beyond that, of course, there are some general
statements: violating a constraint on an operator in an
expression requires a diagnostic in C, because there is a
general statement which says so, even if there isn't a
specific statement for each constraint. And in both
languages, if the standard neglects to specify the behavior,
it is undefined. But as far as I can tell, none of these
cases affect the return value of main.
Note too the difference in wording concerning main. In C++:
"It shall have a return type of type int, but otherwise its
type is implementation-defined." (The "otherwise" is, IMHO,
significant.) In C: "[...] or in some other
implementation-defined manner." In context, it's not really
clear if that statement applies just to the parameters, or
to the function signature in general. I'd interpret it as
applying to the function signature in general, but I can
easily understand the other interpretation as well.
Regardless, however; C doesn't require a diagnostic if you
define main with a signature which isn't supported; C++
does.
It's a constraint violation, even though the behavior is
explicitly specified as implementation-defined.
I was under the impression that something only qualified as a
constraint violation if it were in a paragraph with the heading
"constraints" (but I could easily be wrong).

I also think that the most natural interpretation of the "[...];
or in some other implementation defined manner" in §5.1.2.2.1/1
has it applying to the complete clause which precedes, including
the "defined with a return type of int", so that an
implementation can legally define a version of main which takes
a void (or a double, or a char const*) as a return value. (Note
the difference with respect to the C++ standard, which says "It
shall have a return type of type int, but otherwise its type is
implementation-defined." There's a big difference between "but
otherwise" and simply "or".

--
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
Jul 24 '08 #22
On 2008-07-24 03:46:06 -0400, James Kanze <ja*********@gmail.comsaid:
On Jul 24, 2:03 am, Pete Becker <p...@versatilecoding.comwrote:
>On 2008-07-23 17:50:50 -0400, James Kanze <james.ka...@gmail.comsaid:
>>There's a subtle difference in the way the standards are
worded. In C++, an error requires a diagnostic unless it is
specified to be undefined behavior; in C, an error is
undefined behavior unless it is specified to require a
diagnostic.
>C99, 5.1.1.3 says:
>>A conforming implementation shall produce at least one
diagnostic message (identified in an implementation-defined
manner) if a preprocessing translation unit or translation
unit contains a violation of any syntax rule or constraint,
even if the behavior is also explicitly specified as
undefined or implementation-defined. Diagnostic messages
need not be produced in other circumstances. [footnote
omitted] Beyond that, of course, there are some general
statements: violating a constraint on an operator in an
expression requires a diagnostic in C, because there is a
general statement which says so, even if there isn't a
specific statement for each constraint. And in both
languages, if the standard neglects to specify the behavior,
it is undefined. But as far as I can tell, none of these
cases affect the return value of main.
>>Note too the difference in wording concerning main. In C++:
"It shall have a return type of type int, but otherwise its
type is implementation-defined." (The "otherwise" is, IMHO,
significant.) In C: "[...] or in some other
implementation-defined manner." In context, it's not really
clear if that statement applies just to the parameters, or
to the function signature in general. I'd interpret it as
applying to the function signature in general, but I can
easily understand the other interpretation as well.
Regardless, however; C doesn't require a diagnostic if you
define main with a signature which isn't supported; C++
does.
>It's a constraint violation, even though the behavior is
explicitly specified as implementation-defined.

I was under the impression that something only qualified as a
constraint violation if it were in a paragraph with the heading
"constraints" (but I could easily be wrong).
I think you're right there. But I misspoke: it's a violation of a
syntax rule, and 5.1.1.3 still requires a diagnostic.
>
I also think that the most natural interpretation of the "[...];
or in some other implementation defined manner" in §5.1.2.2.1/1
has it applying to the complete clause which precedes, including
the "defined with a return type of int", so that an
implementation can legally define a version of main which takes
a void (or a double, or a char const*) as a return value.
If that was the intention, it could have been said much more simply:

the arguments and return type of main are implementation-defined.

But note that it's not a matter of whether an implementation "can
legally define a version of main which takes a void". Clearly it can:
that's what that last clause says. The question is whether it must
issue a diagnostic, which is what 5.1.1.3 requires.

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

Jul 24 '08 #23
On Jul 24, 10:26 am, "Alf P. Steinbach" <al...@start.nowrote:
* James Kanze:
I was under the impression that something only qualified as a
constraint violation if it were in a paragraph with the heading
"constraints" (but I could easily be wrong).
I also think that the most natural interpretation of the "[...];
or in some other implementation defined manner" in §5.1.2.2.1/1
has it applying to the complete clause which precedes, including
the "defined with a return type of int", so that an
implementation can legally define a version of main which takes
a void (or a double, or a char const*) as a return value. (Note
the difference with respect to the C++ standard, which says "It
shall have a return type of type int, but otherwise its type is
implementation-defined." There's a big difference between "but
otherwise" and simply "or".
Summing up: when the standard is unclear it is unclear.
I think the only thing to conclude from that is that perhaps
the C standard could have been clarified a bit. If your
interpretation should be correct, then e.g. Bjarne Stroustrup
would have to fix his FAQ, since he (with access to the folks
who created C) maintains that C never allowed 'int main'.
It certainly wasn't allowed in early C compilers, or in
traditional C. The C90 only allowed the two defined signatures,
but because, IMHO, other signatures were undefined behavior, an
implementation could define them. All of the Unix
implementations of C I know also defined a third variant, with
an additional char** argument. (I just looked it up, and I'll
admit, it surprised me; I had always believed that an
implementation was free to define additional signatures in C90,
as it is in C99.)

Practically, of course, it doesn't matter. Implementations will
do what they want, regardless of the standard. And if you want
to be portable (true C or C++, independently of the compiler),
there are only two signatures which work, and both return int.

[...]
Actually I would like a little code-phrase like "[note:
different member of the committee have at least three
different opinions about what this means]" added where
applicable. :-)
That probably applies to 90% of the standard:-).

--
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
Jul 24 '08 #24

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

Similar topics

1
by: Garmt de Vries | last post by:
For a long time, I've used CSS to style my webpages, but only for media "screen" and "print". Now I've started looking into styling them for other media like "projection" and "handheld". I'd be...
2
by: STom | last post by:
I have just started reading up on XMLSerialization and still do not understand the practical use of this technology. For example, if I have to know the class type on the client and on the web...
6
by: jas_lx | last post by:
The basic understanding of what bitwise operators (& ^ | >> << ) comes fairly simple, as long as one has a fundamental understanding of bits, bytes and binary. Having done some Win32...
6
by: planetthoughtful | last post by:
Hi All, I've written my first piece of practical Python code (included below), and would appreciate some comments. My situation was that I had a directory with a number of subdirectories that...
1
by: Edwin Knoppert | last post by:
I wonder what would be better. Two ASP.NET applications sharing the same database or combine both applications as one application (1 directory)? We will write two applications but all the...
28
by: robert | last post by:
In very rare cases a program crashes (hard to reproduce) : * several threads work on an object tree with dict's etc. in it. Items are added, deleted, iteration over .keys() ... ). The threads are...
0
by: Ilinca Ciupa | last post by:
We are accepting applications for LASER 2006 Summer School on Software Engineering until 31 July. Don't wait, register now at http://laser.inf.ethz.ch The LASER 2006 school takes place...
37
by: cman | last post by:
Could you point me to the practical uses of XOR in assembly and algorithms? I understand XOR to be "true if and only if p is true or q is true". Where is this used? I draw a blank on usage. Tilak
1
by: chandan86 | last post by:
Can You Tell Me What Is The Practical Applications Of Operators Of C YOU CAN SEND THE SOLUTION TO <snipped> I will be thankful to 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...
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: 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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...

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.