Comparing two files, if two characters on the same col don't match, cout it. Works
This is a discussion on Comparing two files, if two characters on the same col don't match, cout it. Works within the C++ Programming forums, part of the General Programming Boards category; Code:
#include <iostream.h>
#include <stdlib.h>
#include <fstream>
#include <string>
int main()
{
std::ifstream tfile("C:/test.dat");
std::ifstream tfile2("C:/test2.dat");
char tdata[15000000];
char tdata2[15000000];
...