File input/output: Difference between revisions

→‎[[C]]: Added syntax highlighting
(→‎[[Forth]]: Initial version)
(→‎[[C]]: Added syntax highlighting)
Line 74:
'''Compiler:''' [[GCC]] 4.1.2
 
<highlightSyntax language=C>
#include <stdio.h>
Line 101 ⟶ 102:
return 0;
}
</highlightSyntax>
 
A couple of remarks on the preceding example:
Line 118 ⟶ 120:
An example that addresses these:
 
<highlightSyntax language=C>
#include <stdio.h>
#include <unistd.h>
Line 152 ⟶ 155:
return 0;
}
</highlightSyntax>
 
==[[C sharp|C#]]==