Answer Posted / nashiinformaticssolutions
The memory size and arrangement of a variable, the values that can be stored there, and the actions that can be performed on the variable are all determined by the kind of variable. In C++, /* 0some of the primary variable types are:
Char is used to hold single characters.• integers are stored int.
• float: holds values in floating-point format.
• double: doubles the precision of float by storing floating-point numbers.
• void: denotes the lack of a type.
The value stored in a bool is either "true" or "false."
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
How does the copy constructor differ from the assignment operator (=)?
Mention the ways in which parameterized can be invoked. Give an example of each.
Which software is used to run c++ program?
What is data types c++?
What is searching?
What is setw manipulator in c++?
What is the use of structure in c++?
What are the different types of polymorphism in c++?
Why is that unsafe to deal locate the memory using free( ) if it has been allocated using new?
Do you know what are static and dynamic type checking?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
What is difference between malloc()/free() and new/delete?
Can non-public members of another instance of the class be retrieved by the method of the same class?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard