Mega Code Archive

 
Categories / C / Stdio H
 

Width 20, scientific notation

#include <stdio.h> int main( ) {  double dPi      =   3.14159265;    printf("%20.2e",dPi);   }