answersLogoWhite

0

That is possible. Try it.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What are the similarities between compiler and interpreter?

Both compiler and interpreter are the language programs that translates source program into machine code or we can say object code. Both are used to find errors in source program.


What is the difference between a compiler and a text editor?

An editor is just a program in which you write and edit the program. The compiler is used to compile the program, i.e., convert the program to machine understandable code. A development environment often combines the both into an intelligent application called the IDE or Integrated Development Environment.


Is java interpreter or compiler?

Java has both a compiled and an interpreted stage.1) The programmer writes his source codes (.java extension); a compiler will compile this to bytecode (.class extension).2) When the end-user runs the .class program, the JVM (Java Virtual Machine) will interpret this.


What is pass in compiler design?

There are two types of compilers one-pass and multi-pass. Pass means that some of inner operations are repeated several times. If we have one-pass compiler and this source code: i++; i++; i++; Inside compiler it would generate: i = i + 1; i = i + 1; i = i + 1; If compiler would be two-pass: i = i + 3; The more passes compiler has, the better optimized code it can generate, but it is slower because it must repeat some steps again.


Can we use same compiler for both c and c plus plus language?

Yes. In fact both the C++ compiler and the linker are intrinsically command-driven; the IDE (if you have one) simply provides a graphical front-end to both. Consult your compiler/linker documentation to view the required command line syntax. In particular, consult the 'makefile' topic which should show you how to create a command file (or batch file) that can automate the entire process for a particular project.


Similarities between compiler interpreter assembler?

Both are use to convert high level languages into machine language


Which one gives better execution to the program switch or if else?

There is no difference between switch and if-else. A modern optimizing compiler should be able to generate the same code in both cases.


What is difference between C compiler and c Compiler?

The C-Compiler generates platform dependant code. Therefore the generated program runs only on the architecture (Intel, Motorola etc.) and OS (Windows, Linux, AIX ...) it was compiled for. Therefore it is as fast as can be. Java generates a virtual Byte-Code that needs to be interpreted by a second program. Therefore it is only necessary to port the Interpreter to the various platforms and operating systems.


Can the Vocaloid program work on a Windows hp?

Yes. Vocaloid is compatible with Windows HP. It can run on both Windows Vista and Windows 7 as well.


Compiler and interpreter belongs to which category of software?

Both are "System Softwares".


How do you use your HCL laptop webcam?

To use your laptop webcam, you have to install a program that is compatible with webcam chat such as Skype or MSN. Both programs are free and can be downloaded on their websites.


What is a hybrid compiler?

Hybrid compiler is a compiler which translates a human readable source code to an intermediate byte code for later interpretation. So these languages do have both features of a compiler and an interpreter. These types of compilers are commonly known as Just In-time Compilers (JIT). Java is one good example for these types of compilers.