Transcription of Essential C - Stanford CS Ed Library
{{id}} {{{paragraph}}}
Essential CBy Nick ParlanteCopyright 1996-2003, Nick ParlanteThis Stanford CS Education document tries to summarize all the basic features of the Clanguage. The coverage is pretty quick, so it is most appropriate as review or for someonewith some programming background in another language. Topics include variables, inttypes, floating point types, promotion, truncation, operators, control structures (if, while,for), functions, value parameters, reference parameters, structs, pointers, arrays, the pre-processor, and the standard C Library most recent version is always maintained at its Stanford CS Education Library Please send your comments hope you can share and enjoy this document in the spirit of goodwill in which it is givenaway -- Nick Parlante, 4/2003, Stanford CS Education LibraryThis is document #101, Essential C, in the StanfordCS Education Library .
range of about -2 billion ..+2 billion. Some compilers support "long long" for 64 bit ints. The integer types can be preceded by the qualifier unsigned which disallows representing negative numbers, but doubles the largest positive number representable. For example, a 16 bit implementation of short can store numbers in the range
Domain:
Source:
Link to this page:
Please notify us if you found a problem with this document:
{{id}} {{{paragraph}}}