answersLogoWhite

0


Best Answer

double p= .0000000000000001921;

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a single line of code that will create a double percision variable called p and store 1.921 x 10-16?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are some steps you take after coming to a solution?

C. Double-check that your answer satisfies the equationA. Present your answer with units


Write a line of code that will create the variable Z in memory Z should be able to hold numbers such as 3.1459?

Dim Dbl_PiHolder as Double = 3.1459


What is a double variable?

Potato


How many bytes is a double variable?

There are 8 bytes in a double


Are The number of significant digits in a double variable is up to 15?

The maximum number of significant digits in value belonging to the double type is 15. The maximum number of significant digits is called the precision.


Define pointer to pointer in c?

Double (**) is used to denote the double pointer. As we know the pointer stores the address of variable, Double pointer stores the address of any pointer variable. Declaration : int **ptr2Ptr;


Features in law of double complementation?

In Boolean algebra, the law of double complementation states that a variable is equal to its double complement. This means that applying the complement operation twice to a variable yields the original variable. This law is useful in simplifying Boolean expressions and can help in reducing the complexity of logic circuits.


What would the variable expression be for double a number f?

2f


Why is it important to change double variable during an experiment?

becuase because


What will be the maximum size of a double variable?

8


What does pointer to pointer finger mean?

yea that's why its called the point FINGER


In PHP you can use both single quotes ( ' ' ) and double quotes ( ) for strings?

You can use single quotes $variable = 'string'; You can use double quotes $variable = "string"; You can use the Heredoc method $variable = <<<EOT Very Long String EOT; And you can use the Nowdoc method (after PHP 5.3.0) $variable = <<<'EOT' Very Long String EOT;