answersLogoWhite

0

The numbers 2, 4 and 8 go into 8.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

How do you write a C-program to convert an Octal number to a hexadecimal number?

try this i got output: int main(){ int o; scanf("%o",&o); printf("%x",o); getch(); }


How many times does 30 go int o 329 division?

It goes into it 10.966666666666667 times


What is the c program to find the octal equivalent of an integer?

void Decimal_to_Octal(){int n,r[10],i;coutn;cout


How do you write a C-program to convert an Octal number to a Decimal number?

very simple way yr:int main(){int o;printf("\n Enter an octal number:");scanf("%o",&o);printf("The required decimal number is %d",o);getch();}


What is the atomic number of this element O?

The atomic number of oxygen (abbreviated O) is 8.


What is the atomic number of oxygen (o) the periodic table?

Oxygen's atomic number is 8.atomic number of oxygen (O) is eight


How many electrons does this element have O?

The atomic number of an element tells you the amount of of electrons. In oxygen, symbol 'O', there are 8 electrons since the atomic number is 8. For example, the atomic number of Hydrogen is 1, so there is 1 electron in a Hydrogen atom.


Algorithm for finding the factorial using iterative function?

// returns n! int fact(int n) { int f_n = 1; for(int i = n; i > 1; --i) { f_n *= n; } return f_n; }


What is the name of this atomic number 8 and mass number 16?

This element is oxygen (O).


What is the nucler formula for oxygen?

The nuclear formula for oxygen is represented as ( \text{O} ) with a mass number of 16, written as ( ^{16}\text{O} ). This indicates that oxygen has 8 protons and 8 neutrons in its nucleus. The atomic number of oxygen is 8, which corresponds to the number of protons.


How many protons neutrons does oxygen have?

oxygen has 8 protons as its atomic number is 8. The number of neutrons depends on the isotope. O-15 isotope will have 7 neutrons, O-16 isotope will have 8 neutrons. (Note: Mass number = Number of protons + number of neutrons)


Program to find reverse of given number using pointers?

#include #include void main() { int rev num=0; while(num>0) { rev num=rev num*10+num%10; num=num%10; } return rev_num; } int main(); { int num=4562; printf("reverse of number is%d",reverse digit(num)); getch(); return o; }