/*
 * signed.c - use printf to wirte in scientific notation
 */
#include <stdio.h>

int main(void)
{
  printf(" Number 1200.59 in scientific notation is %e \n", 1200.59); // tell printf to  format in scientific notation
  printf(" Number .0000012 in scientific notation is %e \n", .0000012); // tell printf to  format in scientific notation
  printf(" Number -.0000012 in scientific notation is %+e \n", -.0000012); // tell printf to  format in scientific notation with sign
}