answersLogoWhite

0

Yes

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Which are the operating systems support c plus plus and c?

C and C++ are not directly supported by operating systems. You must use a compiler to convert a program written in C or C++ to a native executable that runs under a particular operating system. In other words, you can use C or C++ under any operating system for which a compiler exists for the desired language.


Does turbo c plus plus works on an android operating system?

yes


Does windows 7 operating system support c plus plus and c?

Yes, via Visual Developer Studio


What is the first operating system written in C plus plus?

Some parts of Windows may be written in C++, I'm not sure.


How do you add printer in turbo C plus plus?

Adding printers is a function of the operating system. The operating system should also provide facilities that allow you to enumerate all printers registered with the operating system.


What is 1 over C plus 2 over 4?

It is (C + 2)/(2*C)


How do you change the colour of console in c plus plus?

Depends on what operating system you are using. I would recommend ncurses, because it has versions for (almost) every operating system, and it would make porting the program easier.


C plus 5 over -3 equals 18?

C = -59


Find the position of z order in c plus plus?

Z-order is a function of the operating system, therefore you'd need to use the API appropriate to your operating system to ascertain the Z-order of a given window.


Does c and c plus plus support static or dynamic binding?

Yes and no. Static vs dynamic binding is not a C or C++ language issue; it is a linker issue. If you link with a .lib file that contains stubs for run-time loading, then the called routine will not be loaded until it is invoked, and it will not be made a part of the load module.


Javas major disadvantage over c and c plus plus?

In C it's easier to work with hardware directly. Also C programs are usually more efficient.


How can you make c and c plus plus language compatible with 64 bit operating system?

Language definitions (specifications) are independent of any Operating System. That is, neither the C nor C++ language specification has any dependence on a specific Operating System's features or the underlying hardware platform.However, when implementing a C or C++ compiler on a specific Operating System and hardware platform, a variety of choices must be made. The Compiler implements the C or C++ language specification. Those specifications often give the compiler a choice in how to allow a certain feature to behave.The most common choice is the default size of and Int and a Pointer. Neither the C++ nor C language require a certain specific size, and thus, compiler designers are free to chose.