File input/output: Difference between revisions

Content added Content deleted
(→‎[[C plus plus|C++]]: + "using namespace std;")
(→‎[[C]]: rm <highlightSyntax> tags)
Line 74:
'''Compiler:''' [[GCC]] 4.1.2
 
<highlightSyntax language=C>
#include <stdio.h>
Line 102 ⟶ 101:
return 0;
}
</highlightSyntax>
 
A couple of remarks on the preceding example:
Line 120 ⟶ 118:
An example that addresses these:
 
<highlightSyntax language=C>
#include <stdio.h>
#include <unistd.h>
Line 155 ⟶ 152:
return 0;
}
</highlightSyntax>
 
==[[C sharp|C#]]==