When i Run this program it gives me cannot execute this program this is the sour
ID: 3609510 • Letter: W
Question
When i Run this program it gives me cannot execute this programthis is the source code
#include<iostream.h>
#include<fstream.h>
void main()
{
int a,b,c,d;
char e;
ifstream infile;
ofstream outfile;
infile.open(indata.txt);
outfile.open(outdata.txt);
infile>>a>>b;
outfile<<"56+38 ="<<a+b;
infile>>e;
outfile<<"the charafter"<<e<<"is b";
infile>>c>>d;
outfile<<"7*8"<<c*d;
infile.close();
outfile.close();
}