answersLogoWhite

0


Best Answer

C means carbon, which consists of six protons, six neutrons and six electrons. (The number of neutrons may be more or less.)

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the exact value of c in space?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How many points is one space marine landspeeder?

It depends on how you arm it, read Codex:Space Marines to get the exact value.


What is the ASCII value of white space in c language?

int main (void) { printf ("space is %d\n", ' '); return 0; }


What is it that you can't ever calculate?

-- end of the universe -- the day you will die -- the exact value of 'pi' -- the exact value of ' e ' -- the exact value of sqrt(2) -- the exact value of any other irrational number


What does the approximate value mean in math?

Approximate value, is a value that is not necessarily the right answer but, it is the closest one to it.It means that it isn't exact - but close to the exact value.


What is the exact value or sin 22.5?

The exact value of sin 22.5 is 0.382683432


Why not is there an exact value of pie?

There is an exact value - we just can't write it in numbers.


How do you divide by exact value and make it a percent?

Some value / exact value x 100 = percentage


What does number close to an exact value mean?

3, -3 4, -4 these numbers all have the same "exact value" 3, -5 do not have the same exact value. exact value is how many s[pots away from 0 it is


What is the exact value to sine 480 degrees?

The exact value is 0.5*sqrt(3)


(f) What is the exact value (in decimal) of giga?

(f) What is the exact value (in decimal) of giga?


What is the definition of storage space?

it is when your c drive is out of space it is when your c drive is out of space


What is meant by value type and reference type in c?

When you work with passing by value C creates a copy of the variable which is referencing to. Thus, it spends free RAM space just to dublicate the variable which already excists.When you work with passing by reference type C works with address of the variable, what makes using of free RAM space more efficient.