•  Back 
  •  C Language 
  •  Index 
  •  Tree View 
  •  Cross references 
  •  Help 
  •  Show info about hypertext 
  •  View a new file 
Topic       : C-Language Documentation
Author      : John Kormylo
Version     : C.HYP 1.0
Subject     : Documentation/C-Language
Nodes       : 233
Index Size  : 6362
HCP-Version : 3
Compiled on : Atari
@charset    : atarist
@lang       : en
@default    : 
@help       : Help
@options    : +g -i -s +x +z -t4
@width      : 75
View Ref-File[ printf/scanf Formats length modifier ]

%ld  long           (decimal)                also %li
%lu  unsigned long  (decimal)
%lo  long           (octal)
%lx  unsigned long  (hexadecimal)
%lf  double         (floating)
%le  double         (exponent)
%lg  double         (exponent optional)

Note: Since floats are converted to doubles before being passed in
      Variable Argument Lists, %f and %lf are indentical in printf()
      but different in scanf().