I recently came across a C code (working by the way) where I found
freq_xtal = ((622.08E6 * vcxo_reg_val->hiv * vcxo_reg_val->n1)/(temp_rfreq));
From my intuition it seems that 622.08E6
should mean 622.08 x 10^6
. Is this assumption correct?
I tried googling for a similar example where E notation is used in a C program. Surprisingly couldn't find any result