blob: b3385cc5cffe322f4a17ecb96c98fc82062fb302 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//acids and bases//
//example 2.24//
pH=7.3;//pH value of human blood//
H=10^-pH;
H1=H/10^-6
printf("H+ concentration of human blood is %f*10^-6M",H1);
k=1*10^-14;//water ionization constant//
OH=k/H;
OH=OH/10^-6;
printf("\nOH- concentration of human blood is %f*10^-6M",OH);
|