Where do you download the C++ software? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I am trying to learn a new language(for me) which will be c++. When I learned java in highschool I was told where to go to get a java Jdk and I downloaded bluej to create, compile, and run my programs. Where do you guys suggest I download these things for c++? I want to know where I can download a thing so I can create, compile, and run my programs for C++. I have windows 7

For Windows, you can use visual studio express for windows desktop, with integrated interface and (limited) debugger:
http://www.microsoft.com/visualstudio/eng/downloads#d-express-windows-desktop
For Linux, you can use gcc on the command line

DEV C++ is very effective and widely used.
http://sourceforge.net/projects/orwelldevcpp/files/Setup%20Releases/Dev-Cpp%205.5.1%20MinGW%204.7.2%20Setup.exe/download
Open this link and download the file. Installation will take place automatically.

Related

A simple GUI for a C++ code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am doing a computer vision project where i have to recognize the text in an image and output it. So I want to develop a simple GUI for my C++ code, where I can show the image in a frame and show the recognized text next to it in some text box. I have no previous experience in developing GUIs, but i think it shouldn't be hard since the interface is not complicated. I am using windows 8 and both eclipse and netbeans are installed. Please provide me with the steps and packages I need to download. Any references to some tutorials or code will be very appreciated.
I suggest to use Qt, the cross-platform application framework.
Download Qt:
Drag and drop features with C++ IDE.
Many video tutorials are available on the web.
Book: C++ GUI Programming with Qt 4 | pdf

Web development software [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Except from HTMLpad and Dreamweaver, what software is best to use when developing websites? I tried to find the one that code academy uses, but unfortunately, i cannot find something like that. I would like to have something which automatically indents and that it automatically tells you if there is something wrong.
Aptana Studio 3 is a useful IDE (Integrated Development Environment) based off of Eclipse to use.
http://www.aptana.com/
If you are into paid IDE's then WebStorm/PhpStorm/RubyMine may not be a bad choice, especially if you also work with Android Studio or IntelliJ IDEA
http://www.jetbrains.com/webstorm/
These may catch syntax errors and help you with formatting, but as with most IDE's it won't catch any logic errors.
I personally use Sublime Text as it handles formatting and does not carry any extra bloat as HTML/CSS and JavaScript are relatively simple languages. It does not do error checking.

Integrating Latex into my desktop application [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm searching for a consultation, or maybe an opinion, a suggestion, or something like this.
I'm starting a project (desktop application) that is something like an IDE for writing books/reports. I'm planing to introduce LaTeX features, if I can name them in a such way.
So the question is: Is it possible to integrate a LaTeX script or plug-in in my software in order to have the needed features?
Waiting for questions or suggestions on my topic.
Thanks in advance!
P.S. Sorry if this topic was already posted.
Not sure I understand your question correctly. I never heard of some kind of LaTeX library or plugin of some kind, which is readily available to be integrated in other programs.
You tagged your question 'qt' so I assume, you use Qt as your framework. The only way I see to integrate LaTeX into Qt is using QProcess. Write your LaTeX code, start pdflatex with QProcess. The question then is if you can do something with the created pdf file.
Look for MikTeX and TeXworks. If you google those, you should be able to get the links to download those. That should do what you need.

Fortran development on Windows [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm not sure if this is a stupid question or not, but I'm thinking of learning to use fortran and was wondering if there a web site where fortran can be freely downloaded for windows, presuming that fortran is free?
Fortran is a language - it is not something you can download. What you can download, though, is a fortran compiler. A compiler is a program that will turn code (written in a language, like Fortran) into machine code (which can then be executed by the operating system).
There are a number of compilers for Fortran. The GNU compiler suite is generally highly regarded (and free and open-source). You can download MinGW (http://www.mingw.org/), which gives you all the libraries and GNU compilers necessary to run a Fortran application on windows.
A basic tutorial on how to compile and run Fortran code in MinGW is available at http://www.stat.sc.edu/~habing/courses/740/mingw.html

How to play mp3 file in c++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I'm looking for the easiest way to play an MP3 file in C++. Either a library I could use and just call the function, given the filename, or alternatively something someone has already written that will just run and quit.
What platform are you on? You can check these out:
In case of windows/linux:
FMOD
In case you are programming only on windows/mac osx:
BASS
I would also look for some native APIs in Windows (if you are developing on that platform).
HTH,
Sriram
Qt comes to the rescue (again). The documentation even comes with demo code on how to implement a media player. It can play videos as well, btw.
http://doc.qt.nokia.com/latest/demos-qmediaplayer.html
Works on all platform and with the same syntax = WIN.