Computers & Internet Logo

Related Topics:

A
Anonymous Posted on Jan 13, 2014

How to compile dow platformjava code on window plateform

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

1helpful
1answer

I want to buy a Dell Laptop based on Intel I3 core processor. But i heard that it doesn't suuport C++ compiler. Is it true? If yes then which Laptop shall i purchase that can support C++,Java...

Hello,
c++ supports just about any processor. The issue may lay in the OS you choose, and how new / old your c++ compiler is.
I have compiled code on Windows 7 using i3, and i7 processors just fine, with Visual Studio 2010 in c#, c++.
I doubt you will have an issue unless your c++ compiler / interpreter software is really old.
Chris
0helpful
1answer

Can you give an example of compiler using vb?

Dim parameters As New CompilerParameters() Dim results As CompilerResults parameters.GenerateExecutable = True parameters.OutputAssembly = Output results = icc.CompileAssemblyFromSource(parameters, SourceText)
The code above uses the CompilerParameters object to tell the compiler that you want to generate an executable file (as opposed to a DLL) and that you want to output the resulting assembly to disk. The call to CompileAssemblyFromSource is where your assembly gets compiled. This method takes your parameters object and the source code, which is a string. Once you compile your code you can check to see if there were any compilation errors. We use the return value from CompileAssemblyFromSource, which is a CompilerResults object. This object contains an errors collection, which contains any errors that occurred during the compile.
There are other options for compiling, such as compiling from a file. You can also batch compile, which means you can compile multiple files or sources at the same time. Additional information on these classes is available on MSDN Online:
0helpful
1answer

Windows has stopped this device because it has reported problems. (Code 43). THis error message is coming while connecting bluetooth dongle to my toshiba laptop windows 7 64bit plateform

Try this, diconnect Laptop from power source ie Remove the battery. Unplug your bluetooth dongle from the Laptop. Reinsert the battery back to your laptop after about 30 sec. Restart your laptop & insert the dongle.

Hope it fix your problems.

2helpful
2answers

HOW TO RUN TURBO C IN 64 BIT WINDOWS 7

Hi,

Turbo C/C++

64 Bit operating systems like Windows Xp64, Windows Vista64, and Window 7 will no longer run 16 bit applications and this includes Turbo C 2.01/Turbo C++ 3.0/3.1 or the programs they produce.
Turbo C 2.0 was first released in 1989, Turbo C++ 3.1 in 1991 making these programs nearly two decades old. They are just too old to run on modern PCs.

Upgrade To Modern Compiler

Note that Turbo C/C++ is very very very very old and produces 16 bit programs which no long run on many modern computers. So the best advice is to upgrade to a new compiler. There are many free compilers out there that you can use.

Free Compilers:
  • Microsoft Express 2008 -- Great compiler and comes with a nice IDE (Visual Studio)
  • MinGW -- Command line compiler but there are many IDEs that use it such as Code::Blocks, Eclipse, Dev-C++
  • Borland C++ 5.5 -- Will compile Turbo C++ programs (including graphics.h) but produces 32bit code (slightly better than Turbo C) Only includes command line tools.
  • DigitalMars -- Its still old but at least it produces 32bit programs (better than Turbo C). You might stumble across D++ which is a very powerful language derivative of C++.
  • OpenWacom -- Again, nearly as old as Turbo C, but it produces more modern 32bit applications! (this project is still active too).
If you are just working with C there is:
  • Pelles -- and excellent modern C compiler and IDE. Pelles also has the new TR1 libraries available so you can use regex and other new features. As well as support for many older libraries.
  • LCC-Win32 -- Used as the basis for many of the research compilers.
  • Tiny C -- is said to produce very fast programs.
.
All of the above are Free and all excellent replacements for Turbo C which is so old it will not even run on your computer.


Regards.
2helpful
1answer

Running graphics c++ programs in TC++

TC++ is 16-bits and 16-bits programs are not fully Windows 2000/XP/Vista/7 compatible. Windows emulates the older 16-bits environment using "NVTDM", but direct hardware access is (by design) still not possible (which is - besides unhandled program exceptions - the main cause for such error messages).

The only - structural - solution is to get a more modern 32 bits C++ compiler instead of TC++. You can find a list of free 32 bits Windows compilers here: http://www.thefreecountry.com/compilers/cpp.shtml

You might have to adapt the existing C++ code a little to the new compiler you choose.

When you really want to continue using TC++ you could use try the free "DOSBox" emulator (which has pretty accurate DOS emulating,. much better than Windows itself) or create a virtual machine with DOS or Windows 3.11 ...
1helpful
2answers

How to run java code in cmd prompt...

javac filename.java to compile and java filename to execute
0helpful
2answers

What is a compiler and ite story

A compiler takes code that you have writin, and 'compiles' it into machine language code ex.10010011, a language that your computer can understand and execute.
0helpful
2answers

Compile VLC

follow instructions at vlc website under your distribution
http://www.videolan.org/vlc/
Not finding what you are looking for?

19 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73781 Answers

ADMIN Eric
ADMIN Eric

Level 3 Expert

42221 Answers

Brad Brown

Level 3 Expert

19190 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...