answersLogoWhite

0

Yes, it's. The only exception I can think of is Itanium. But even that case compiler can be configured in a way that you do need to worry about that.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is programming languages in c plus plus?

Programming in C++ means designing and writing a computer program using the C++ programming language. C++ is a high-level, machine-independent language which must be converted into machine-dependent code by a compiler.


What are the parts of c plus plus environment with drawing?

C++ has no built-in graphics methods. C++ is a machine-independent programming language, but graphics are machine-dependent. To make use of graphics of any kind, you must use a suitable graphics library. If you need cross-platform support, use a generic library.


What is the mean c plus plus in machine code?

It is used to distinguish between the C or C++


Is Visual C or Visual C plus plus platform independent?

No, M$ Windoze only.


How do you take input in graphics mode in c plus plus?

C++ has no graphics ability whatsoever. C++ is a machine-independent programming language, but graphics are machine-dependent. To use graphics in C++ you must use an appropriate library. If you need cross-platform support, you must use a generic library. Each library has its own specific methods for accepting input thus you must consult the library documentation for more information on this aspect.


Why c and c plus plus programs can not work on all platforms?

C and c++ programs can work on all plate form if they do not have machine dependent code.The executable files of these can not work no different plate forms because they have machine dependent information and if machine changes the information will become meaningless .


Why c is machine independent but not platform independent language?

The platforms contain the libraries it uses. The libraries may have different implementations on different machines.


Which one easier C plus plus or assembly language?

C++, but it's always worth learning both, if only to better understand the machine code you create with C++.


Does the C plus plus programming language use a virtual machine?

No, it does not. But Microsoft Visual Studio 2008 allows you to connect to a virtual machine and run your projects "sandboxed".


Does C and C Plus Plus work properly in Vista?

This will depend upon whether the applications written in C or C++ have the correct runtime libraries on the target machine. The languages themselves make no difference.


Why c is machine independent language?

C source code is portable; it can be compiled upon any machine with a suitable C compiler in order to produce the machine-dependant code (the machine code). However, C can also be used to write machine-dependant code, or code that is dependant upon specific platforms. In order to be completely portable, the code must use the C standard library and/or generic libraries.


Is C plus plus interpreted as the program is executed?

No. Neither C nor C++ are interpreted. Both need to be compiled and linked to produce highly-optimised machine code, which is then executed.