File input/output: Difference between revisions

Content deleted Content added
→‎[[C plus plus|C++]]: + "using namespace std;"
→‎[[C]]: rm <highlightSyntax> tags
Line 74: Line 74:
'''Compiler:''' [[GCC]] 4.1.2
'''Compiler:''' [[GCC]] 4.1.2


<highlightSyntax language=C>
#include <stdio.h>
#include <stdio.h>
Line 102: Line 101:
return 0;
return 0;
}
}
</highlightSyntax>


A couple of remarks on the preceding example:
A couple of remarks on the preceding example:
Line 120: Line 118:
An example that addresses these:
An example that addresses these:


<highlightSyntax language=C>
#include <stdio.h>
#include <stdio.h>
#include <unistd.h>
#include <unistd.h>
Line 155: Line 152:
return 0;
return 0;
}
}
</highlightSyntax>


==[[C sharp|C#]]==
==[[C sharp|C#]]==