answersLogoWhite

0

More user friendly than what? Please restate the question.

User Avatar

Wiki User

13y ago

What else can I help you with?

Continue Learning about Engineering

Which one has more jobs java or c plus plus?

C++.


Object in c and c plus plus?

C is not an object-oriented programming language and therefore has no objects as such. However, the term is often used in a more general sense to mean any instance of an user-defined or primitive variable/constant. In C++, the term is used specifically to mean any instance of a class.


Can a C plus plus user defined function return a value?

Absolutely. Indeed, any function (user-defined or built-in) that does not return a value is not really a function, it is simply a procedure.


C plus plus get user input without prompting for it?

To prompt a user in C++ you use cout to output the prompt to the console (e.g., the screen). You then use cin to extract the input from the user. So to get user input without a prompt, simply do not output a prompt before accepting input. However, accepting user input without a prompt would be decidedly un-user-friendly, unless you can guarantee the input does not come from the keyboard. If you're not using the console and the program is actually running in an event-driven interface (such as Windows), then you need only trap the keyboard, mouse or other HID messages that are posted to your application via the application's message loop, and act accordingly.


How do the IO facilities in C plus plus differ from those in C?

The C standard library IO facilities are not extensible. For instance, the printf() and scanf() functions cannot handle user-defined types. However, the C++ standard library provides IO streams with insertion and extraction operators (<< and >>) that can be overloaded to support any user-defined type.

Related Questions

User defined data type in c plus plus?

Use "typedef" : both in C and C++.


How do you make hangman in c plus plus?

See the related links section, below, for a tutorial on how to write a console-based hangman. Once you understand the logic behind the game itself you can make it more interesting by adding your own graphics support along with a more user-friendly interface.


How do you check a user's text input in C plus plus?

Use an SLR parser algorithm.


What is data hidening in c plus plus?

Data hiding is a property that only relevant information is exposed to the user and rest of the informations remains hidden from the user


Can a user compile c programme using c plus plus compiler?

Usually, but not always. For example the following is legal in C, but illegal in C++: char new [3] = "ABC";


Which one has more jobs java or c plus plus?

C++.


What is friendly in c plus plus?

The keyword "friend" allows a function or variable to have access to a protected member inside a class.


What has the author Mark D Goodwin written?

Mark D Goodwin has written: 'User interfaces in C and C[plus plus] for OS/2' -- subject(s): OS/2 (Computer file), C (Computer program language), Graphical user interfaces (Computer systems), C


Object in c and c plus plus?

C is not an object-oriented programming language and therefore has no objects as such. However, the term is often used in a more general sense to mean any instance of an user-defined or primitive variable/constant. In C++, the term is used specifically to mean any instance of a class.


Can a C plus plus user defined function return a value?

Absolutely. Indeed, any function (user-defined or built-in) that does not return a value is not really a function, it is simply a procedure.


Can anyone give you the c plus plus code to check where the line ax plus by plus c cuts the circle x2 plus y2 plus 2gx plus 2fy plus c equals 0 where a b c g f are entered by the user?

Your question is not clear. Please give the formula to calculate the value of x and the condition at which the line cuts the circle


C plus plus get user input without prompting for it?

To prompt a user in C++ you use cout to output the prompt to the console (e.g., the screen). You then use cin to extract the input from the user. So to get user input without a prompt, simply do not output a prompt before accepting input. However, accepting user input without a prompt would be decidedly un-user-friendly, unless you can guarantee the input does not come from the keyboard. If you're not using the console and the program is actually running in an event-driven interface (such as Windows), then you need only trap the keyboard, mouse or other HID messages that are posted to your application via the application's message loop, and act accordingly.