blob: ef127ae1886ed1df9c832aa448f5cd4a9146592f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Ex1_10
clc;
//Given:
enthalpy=1278; // enthalpy of combustion in kJ/mol
//solution:
energy=(enthalpy*1000)/(6.022*10^23*1.6*10^-19);
printf("The energy in eV is = %f ",energy)
|