473,505 Members | 14,658 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can Some One Help!!??

21 New Member
My code is this:

struct Book
{
char title[MAXBOOKS];
};
int fillarray(...)
{
Book theBook;
ifstream infile("library.txt");
while(true)
{
for(int i = 0; i < MAXBOOKS; i++)
{
infile.getline(theBook.title[i],MAXLENGTH);
cout << theBook.title[i];
for(int j = 0; j < MAXKEYWORDS; j++)
{

}
}
}

But when i debug it I come up with this error:

c:\documents and settings\owner\my documents\visual studio 2005\projects\hw 4\hw 4.cpp(29) : error C2664: 'std::basic_istream<_Elem,_Traits> &std::basic_istream<_Elem,_Traits>::getline(_El em *,std::streamsize)' : cannot convert parameter 1 from 'char' to 'char *'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]
Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
Build log was saved at "file://c:\Documents and Settings\Owner\My Documents\Visual Studio 2005\Projects\HW 4\Debug\BuildLog.htm"
HW 4 - 1 error(s), 0 warning(s)

CAN SOME ONE HELP ME!!!!!!??????
Sep 25 '06 #1
9 2721
gasfusion
59 New Member
I think the problem there is that you cannot use arrays in get line...Sorry, i forgot to mention that.
just read the name of the book into a temporary string and then save it to your book struct. or you >> operator in while loop to read the file;

Expand|Select|Wrap|Line Numbers
  1. struct Book
  2. {
  3.     Title[MAXBOOKS];
  4. };
  5.  
  6. int main() 
  7. {
  8.     Book myBooks;
  9.     int i = 0;
  10.                 string sBook;
  11.     ifstream infile("library.txt");
  12.  
  13.                 // See if this works
  14.                 while (infile >> myBooks.Title[i])
  15.                     i++;
  16.  
  17.     //for (i=0;i<MAXBOOKS; i++) {
  18.                 //      infile.getline(sBook, MAXLENGTH);
  19.                 //                myBooks.Title[i] = sBook;
  20.                //}
  21.     return 0;
  22. }
  23.  
Sep 25 '06 #2
jjh
21 New Member
I think the problem there is that you cannot use arrays in get line...Sorry, i forgot to mention that.
just read the name of the book into a temporary string and then save it to your book struct.
so instead of using a character I should use a string??
character is char
what is string in c++???
Sep 25 '06 #3
gasfusion
59 New Member
just include a
#include <string>

in your class list.
you can use a character if you want to. It'll more logical because it would use less memory, but it's not like it's terribly necessary.
Sep 25 '06 #4
gasfusion
59 New Member
hey but see if you can use this code instead of getline

// See if this works
while (infile >> myBooks.Title[i])
i++;

this should write directly into your array.
Sep 25 '06 #5
jjh
21 New Member
just include a
#include <string>

in your class list.
you can use a character if you want to. It'll more logical because it would use less memory, but it's not like it's terribly necessary.
I put in the #include <string> and now if I put in:
string tempTitle;
I get an error stating that 'string is an undeclared identifier.
?????
Sep 25 '06 #6
jjh
21 New Member
just include a
#include <string>

in your class list.
you can use a character if you want to. It'll more logical because it would use less memory, but it's not like it's terribly necessary.
if i put in #include <string> and then:
string tempTitle;
infile.getline(tempTitle,MAXLENGTH);
theBook.title[i] = tempTitle;
I get an error message stating:
error C2065: 'string' : undeclared identifier
error C2146: syntax error : missing ';' before identifier 'tempTitle'
error C2065: 'tempTitle' : undeclared identifier
Sep 25 '06 #7
jjh
21 New Member
if i put in #include <string> and then:
string tempTitle;
infile.getline(tempTitle,MAXLENGTH);
theBook.title[i] = tempTitle;
I get an error message stating:
error C2065: 'string' : undeclared identifier
error C2146: syntax error : missing ';' before identifier 'tempTitle'
error C2065: 'tempTitle' : undeclared identifier
by using:
while (infile >> myBooks.Title[i])
that will only write in one letter at a time, and i am wanting to writ in a title such as "The principles of chem"
Sep 25 '06 #8
gasfusion
59 New Member
if you're using strings then add:

using namespace std;

after you class includes.
Sep 25 '06 #9
jjh
21 New Member
I think the problem there is that you cannot use arrays in get line...Sorry, i forgot to mention that.
just read the name of the book into a temporary string and then save it to your book struct.
If I use your sugestion of putting the infile in for a string and then assigning it into a char array doesn't work.

I get this error

c:\documents and settings\owner\my documents\visual studio 2005\projects\hw 4\hw 4.cpp(34) : error C2664: 'std::basic_istream<_Elem,_Traits> &std::basic_istream<_Elem,_Traits>::getline(_El em *,std::streamsize)' : cannot convert parameter 1 from 'std::string' to 'char *'
with
[
_Elem=char,
_Traits=std::char_traits<char>
]

Can you think of something

this is what I have so far.

#include <iostream>
#include <fstream>
#include <string>
using namespace std;
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::ifstream;
#define MAXBOOKS 9
#define MAXKEYWORDS 3
#define MAXLENGTH 50
struct Book
{
char title[MAXBOOKS];
char keyWord[MAXKEYWORDS][MAXLENGTH];
char position;
};
int fillArray()
{
char title;
char keyword1;
char keyword2;
char keyword3;
Book theBook;
ifstream infile("library.txt");
while(true)
{
for(int i = 0; i < MAXBOOKS; i++)
{
// infile >> theBook.title[i];

string tempTitle;
infile.getline(tempTitle,MAXLENGTH);
//strcpy(theBook.title[i], tempTitle);
cout << theBook.title[i];

for(int j = 0; j < MAXKEYWORDS; j++)
{

}
}
}
return 0;
}
Sep 25 '06 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

21
6487
by: Dave | last post by:
After following Microsofts admonition to reformat my system before doing a final compilation of my app I got many warnings/errors upon compiling an rtf file created in word. I used the Help...
9
4377
by: Tom | last post by:
A question for gui application programmers. . . I 've got some GUI programs, written in Python/wxPython, and I've got a help button and a help menu item. Also, I've got a compiled file made with...
6
4304
by: wukexin | last post by:
Help me, good men. I find mang books that introduce bit "mang header files",they talk too bit,in fact it is my too fool, I don't learn it, I have do a test program, but I have no correct doing...
3
3325
by: Colin J. Williams | last post by:
Python advertises some basic service: C:\Python24>python Python 2.4.1 (#65, Mar 30 2005, 09:13:57) on win32 Type "help", "copyright", "credits" or "license" for more information. >>> With...
7
5343
by: Corepaul | last post by:
Missing Help Files When I enter "recordset" as the keyword and search the Visual Basic Help index, I get many topics of interest in the resulting list. But there isn't any information available...
5
3249
by: Steve | last post by:
I have written a help file (chm) for a DLL and referenced it using Help.ShowHelp My expectation is that a developer using my DLL would be able to access this help file during his development time...
8
3206
by: Mark | last post by:
I have loaded Visual Studio .net on my home computer and my laptop, but my home computer has an abbreviated help screen not 2% of the help on my laptop. All the settings look the same on both...
10
3328
by: JonathanOrlev | last post by:
Hello everybody, I wrote this comment in another message of mine, but decided to post it again as a standalone message. I think that Microsoft's Office 2003 help system is horrible, probably...
1
6112
by: trunxnirvana007 | last post by:
'UPGRADE_WARNING: Array has a new behavior. Click for more: 'ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?keyword="9B7D5ADD-D8FE-4819-A36C-6DEDAF088CC7"' 'UPGRADE_WARNING: Couldn't resolve...
0
2848
by: hitencontractor | last post by:
I am working on .NET Version 2003 making an SDI application that calls MS Excel 2003. I added a menu item called "MyApp Help" in the end of the menu bar to show Help-> About. The application...
0
7216
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7367
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7018
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5613
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5028
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4699
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3187
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1528
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
407
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.