answersLogoWhite

0

It should work without any special action.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How many main functions are used in c plus plus program?

One.


What is the importance of functions in a c plus plus program?

Functions are very important in C++, as you can't write the simplest program to print hello without using a function. Overall you can say that function are building blocks of a C++ program. Functions can also be defined by the programmer to reduce program size.


How many main functions can a c plus plus program have?

1. In C language, you cannot compile a source-file if it has two (or more) functions with the same name. 2. You cannot link a program if it has two (or more) global (ie: non-static) functions with the same name.


Can there be friend functions in c plus plus?

Yes, there can be friend functions in C++.


Can you program games with c plus plus?

Yes, you can program games with C++.


What is the importance of using functions in a c program?

C programs do not function without functions.


Can a function be called from more than one place in a program in c plus plus?

In C and C++, as well as in many (all?) languages, a function can be called from more than one place in a program. That's the purpose of functions - to encapsulate pieces of code that are needed in more than one place in the program.


In c plus plus are local declarations visible to the function in a program?

If you declare a variable inside of any fuction (except main) it will not be available to other functions.


Printf and scanf Operators in C and C plus plus?

No, they are functions. Operators are -> or ++or /=


What is a c plus plus run time library?

A runtime library is a dynamic link library (DLL) which provides common runtime services and functions required by a C++ program. By storing common functionality in a DLL, you reduce the need for duplicate code within your program, thus reducing its size, and the DLL can be shared amongst many programs, thus reducing the overall memory footprint.


How to restart c plus plus program?

Exit the program and relaunch it.


Why functions are not used in c plus plus?

Of course they are used. Both stand-alone and class-member functions are used in C++.