Greetings.
Err, I don't really get what you mean.
2) I really don't need to include the cin >>FullTimePartTIme statement, how can I
get the program to work without inluding this statement.
When I take those lines out, it worked just fine, as in, I could enter a name and get it displayed in return ;)
#include <iostream>
#include <string>
using namespace std;
int main()
{
char key;
using namespace std;
char FullTimePartTime;
char response[256];
//cout << "\n\nDO YOU NEED TO CALCULATE FULLTIME OR PARTIME EXPENSES? ";
//cin >>FullTimePartTime;
//cin is placed here program skips
//cin.getline(response,256)
cout << endl;
cout << "What is your name? "; //
cin.getline(response,256);
if (strlen(response) == 0)
cout << "\nYou must tell me your name...";
else
cout << "It's nice to meet you, " << response;
cout << "\ntype a key and hit return ";
getchar();
return 0;
}