I'm writing a program that is designed to respond to user input. I have one problem at the moment. i need to write a statement that will check the value of a string variable. it's supposed to to the following:
if the variable is equal to "" then it will run a save data function(which i've got sorted.) i'm using dev C++
Thanks, one more thing.(sorry!)
what is wrong with my code. i keep getting errors like my function has already been defined or something related to my seperate source file which is linked to main.cpp.
below is main.cpp:
// Talk to the Computer V 1.0.0 - this program is designed to respond
// to input from the user.
// main.cpp
// Header files
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include "functions.cpp"
using namespace std;
// Main Program
int main(int nNumberofArgs, char* pszArgs[])
{
string Name;
if(Name == "")
{
cout << "Hello there.\nHave we met?" << endl;
cout << "What's your name?" << endl;
cin >> Name;
Savedata(Name);
cout << "The value of the variable called"
<< "is " << Name << ".\n";
}
// wait until user is ready before terminating program
// to allo user to seee the program results
system("PAUSE");
return 0;
}
and below is functions.cpp (where i store my functions):
// Functons for main.cpp
// functions.cpp
// Standard Template Library Files only
#include <fstream>
#include <string>
using namespace std;
That means exactlys that: function is defined twice.
I suppose that you have included functions.cpp in project compile list, so there will be 2 SaveData() functions in program: one in compiled functions.cpp and one in main (you included functions.cpp here)
So it means that function.cpp in your build list. either delete it from there or create a header for your cpp file and include that in main.
How your code looks after preprocessing:
/*main.cpp*/
// Talk to the Computer V 1.0.0 - this program is designed t...
// to input from the user.
// main.cpp
// Header files
#include <cstdio> //<\
#include <cstdlib> //<--I didn't expand these because they're HUGE
#include <iostream>//</
// Functons for main.cpp
// functions.cpp
// Standard Template Library Files only
#include <fstream>
#include <string>
usingnamespace std;
// Savedata Function
void Savedata(string args) //<-First definition
{
ifstream TakeData;
ofstream SaveData;
TakeData.open("data.dat");
TakeData << args;
TakeData.close();
SaveData.open("data.dat");
SaveData >> args;
Savedata.close();
}
usingnamespace std;
// Main Program
int main(int nNumberofArgs, char* pszArgs[])
{
string Name;
if(Name == "")
{
cout << "Hello there.\nHave we met?" << endl;
cout << "What's your name?" << endl;
cin >> Name;
Savedata(Name);
cout << "The value of the variable called"
<< "is " << Name << ".\n";
}
// wait until user is ready before terminating program
// to allo user to seee the program results
system("PAUSE");
return 0;
}
/*function.cpp*/
// Functons for main.cpp
// functions.cpp
// Standard Template Library Files only
#include <fstream>
#include <string>
using namespace std;
// Savedata Function
void Savedata(string args) //<-Second definition
{
ifstream TakeData;
ofstream SaveData;
TakeData.open("data.dat");
TakeData << args;
TakeData.close();
SaveData.open("data.dat");
SaveData >> args;
Savedata.close();
}