Are there any Unix man
pages or similar standardized reference for variable type declarations (in c)?
For example, if I want details on the float
variable type and different ways to declare it, is there a standardized reference in Unix? The compiler man pages? Or is an online reference or book on C required?
I just saw float power=2.345f
when reading Learn C the Hard Way, was wondering what the f
means, and quickly learned that man 3 float
and man float
do not produce anything, and even man -k float
does not seem to show any relevant results.
So, where to look for definitive answers about c variable types and their declarations, preferably retrievable on the OS without internet access?