I am trying to run one program using GNU compiler GCC 3.2.3.
*i am seding u *partial code of my program and the compilation error i am getting.
#include <iostream.h>
#include <fstream>
#include <iomanip>
#include <stdio.h>
void fileinput();
int m,n, k, r;
*
main()
{}
void fileinput()
{
*int i,j;
**ifstream read("data1");
**cout << "No. of variables and constraints = " << endl;
**read >> m ;
**read >> n; //reading dimension of the problem.
**cout << *n << " *and *" << m;
}/* function filemode() ends *here */
Bug I ma getting is thses error which i am not able to solve out. Can anyone help me.
thsnks.