Forum: C++ Sep 4th, 2003 |
| Replies: 1 Views: 11,100 Hello,
If you have created a Win32 console application instead of a Win32 application by mistake, there are two ways to fix this problem:
From the Project menu, choose Settings, click the C/C++... |
Forum: C++ Sep 2nd, 2003 |
| Replies: 1 Views: 39,883 #include <fstream.h>
#include <iomanip.h>
int main()
{
int ind, tot;
unsigned char byte;
ifstream infile("inputfile.dat", ios::in | ios::binary);
ofstream outfile("outputfile.dat",... |