...ailable for the common platforms, focussing on freely available compilers (non-comprehensively)
* switches or other means of invoking each compiler in standards mode (non-comprehensively).
...
20 KB (3,139 words) - 23:48, 18 April 2015
should print non-graphic characters in octal or hexadecimal according to local
files or, if no files are named as arguments, from the standard input. Should the
...
3 KB (434 words) - 22:49, 16 March 2011
...ing, you will not be surprised to hear that C provides quite a rich set of standard library functions for manipulating them. In this chapter, we will introduce
...sn't that fussy, and it's only interested in whether the condition is 0 or non-0. That means we can do this:
...
9 KB (1,515 words) - 21:57, 19 April 2015
...ed? ''After'' the loop body, and ''only'' if the condition evaluated true (non-0).
=====Standard library functions, by header=====
...
5 KB (787 words) - 11:08, 17 April 2015
...afford to, because it would require rewriting too much of the intertwined, non-user-interface, data processing code as well. And so on.
== The main benefit of separating portable from non-portable code ==
...
18 KB (2,975 words) - 22:51, 2 March 2016
! 1; /* this gives 0. Why? Because 1 is non-zero, so it's not false, so it's true, so NOT 1 is not true, so it's false,
! 6; /* this also gives 0. Why? Because 6 is non-zero, so it's not false, and the rest of the reasoning is as given above. *
...
20 KB (3,184 words) - 09:56, 17 April 2015
If there were a prize for the least useful standard C type, '''short int''' would undoubtedly win it. Like the int, the short i
The long int is used for some standard library functions, so it's worth getting to know. Also, it is ''guaranteed'
...
9 KB (1,579 words) - 11:37, 17 April 2015
...two values it will yield, based on a condition. If the condition is true (non-zero), it will yield the first value. Otherwise, it will yield the second.
...'ve pinched the minimum() function from earlier in the chapter; it isn't a standard library function.)
...
13 KB (2,198 words) - 10:44, 17 April 2015
...table C code; its sister-group [news:comp.std.c comp.std.c] deals with the Standard as a document, including how to interpret it.
The Standard covers C's syntax and its standard library. The standard library consists roughly of memory allocation, maths, file-based input/outp
...
28 KB (4,619 words) - 22:51, 2 March 2016