I am trying to build exe bbut getting the following above said error..
I am tring to build below mention code.
#include <iostream>
#include <fstream.h>
#include <stdlib.h>
#include "RohitSahni/String.h"
using namespace std;
int main(int argc, char **argv)
{
String testString("Hellow");
cout << "*********"<<testString.c_str();
}
In the above code i have defined my own String claa inherited from std::string.
Plz Help
Thanks
Rohit