473,382 Members | 1,583 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,382 software developers and data experts.

Need Help with programming

I am getting some error messages which I can't figure out their
meaning. I have the code setup, I think it's correct but it doesn't
work. My goal is to get this program to read from a data file and
basically put it into an output file that I can access as a test file.
Here is my header file:

#include <iostream.h>
#include <fstream.h>
#include <iomanip.h>

struct StudRdType
{
int id;
float exam1;
float exam2;
float exam3;
};
StudRdType students;

void ReadRd(ifstream&, StudRdType[]);
void WriteRd(ofstream&, StudRdType[]);

Here is my function file: It is supposed to hit the data file, read it
and save the information. For example the data file looks like:

1111 275 323 432
1342 432 235 532
2343 235 432 234

So the ReadRd function is spoed to read that and save it. I can't get
it do that, im a bit rusty and can't seem to remember how to do this.
This is what I have for the function file (implementation).

#include "stud2.h"

void ReadRd(ifstream& inFile, StudRdType students[])

{

inFile.get(students.id);

while(inFile)
{
inFile >> students.exam1 >> students.exam2 >> students.exam3);
inFile.ignore('\n');
inFile.get(students.id);
}
}

void WriteRd(ofstream& outFile, StudRdType students[])
{
outFile << students.id << students.exam1 << students.exam2 <<
students.exam3 << endl;
outFile.setf(ios::fixed);
outFile.setf(ios::showpoint);
outFile.precision(2);
}

For some reason it isn't working , not sure hwy.. Finally here is my
driver file:

#include "stud2.h"

int main()
{

ifstream inFile;
ofstream outFile;
StudRdType students;
inFile.open("in.data");
outFile.open("out.data");
if(inFile.fail() || outFile.fail())
{
cout << "input or out file opening failed" << endl;
exit(1);
}

ReadRd(inFile, students);
WriteRd(outFile, students);

outFile << "*** END ***" << endl;

return 0;
}
Now here are the errors I get when I run them.. Again my goal is to
read the data file I showed above and print it to an outfile, the exact
same way as it looks.

Errors:

runstud2.cxx: In function `int main()':
runstud2.cxx:40: error: cannot convert `StudRdType' to `StudRdType*'
for
argument `2' to `void ReadRd(std::ifstream&, StudRdType*)'
runstud2.cxx:41: error: cannot convert `StudRdType' to `StudRdType*'
for
argument `2' to `void WriteRd(std:fstream&, StudRdType*)'
stud2.cxx: In function `void ReadRd(std::ifstream&, StudRdType*)':
stud2.cxx:15: error: request for member `id' in `students', which is of
non-class type `StudRdType*'
stud2.cxx:19: error: request for member `exam1' in `students', which is
of
non-class type `StudRdType*'
stud2.cxx:19: error: request for member `exam2' in `students', which is
of
non-class type `StudRdType*'
stud2.cxx:19: error: request for member `exam3' in `students', which is
of
non-class type `StudRdType*'
stud2.cxx:19: error: parse error before `)' token
stud2.cxx:21: error: request for member `id' in `students', which is of
non-class type `StudRdType*'
stud2.cxx: In function `void WriteRd(std:fstream&, StudRdType*)':
stud2.cxx:35: error: request for member `id' in `students', which is of
non-class type `StudRdType*'
stud2.cxx:35: error: request for member `exam1' in `students', which is
of
non-class type `StudRdType*'
stud2.cxx:35: error: request for member `exam2' in `students', which is
of
non-class type `StudRdType*'
stud2.cxx:35: error: request for member `exam3' in `students', which is
of
non-class type `StudRdType*'

I'm completely Confused.. I am in need of some serious help as I am
eager to learn this stuff and am unsure as to what I'm doing
incorrectly.

Thanks in advance!

Sep 16 '05 #1
3 2651
First up - I am NOT going to give you a correct working program (I
think you're having problems in your homework!)
#include <iostream.h>
#include <fstream.h>
#include <iomanip.h>
#include <iostream>
#include <fstream>
#include <iomanip>
Errors:
runstud2.cxx: In function `int main()':
runstud2.cxx:40: error: cannot convert `StudRdType' to `StudRdType*'
for
argument `2' to `void ReadRd(std::ifstream&, StudRdType*)'
This should tell you everything! You are passing an object where a
pointer is expected! All the other errors are also due to this very
mistake. In main, you've said -
StudRdType students;


This is a *single* object and *not* an array of objects. The functions
ReadRd and WriteRd are expecting pointers! Now, go figure it out how to
fix it - you've enough information to do it yourself!

Srini

Sep 16 '05 #2
Drewdog wrote:
I am getting some error messages which I can't figure out their
meaning. I have the code setup, I think it's correct but it doesn't
work.


LOL

You're confused about arrays, and are desparately trying to ignore this
issue in your code.

The easiest answer would be to use a vector instead of an array. But I'm
absolutely positive you won't want to take the easy route (newbies never
do).

So you need to get a C++ book and look up dynamic arrays, that is the
technique you need here.

Alternatively look up vectors. This will be easier in the long run but
mean that you have to throw away more of the code below.

john
Sep 16 '05 #3
On 9/15/2005 7:07 PM, Drewdog wrote:
struct StudRdType
{
int id;
float exam1;
float exam2;
float exam3;
};
StudRdType students;

void ReadRd(ifstream&, StudRdType[]);
void WriteRd(ofstream&, StudRdType[]);


If you look closely at your function prototypes, you will notice that
they are expecting to receive an array of StudRdType. The variable you
have defined calles "students" is not an array, it is mearly a variable
of type struct StudRdType. Turn that into an array and most of those
errors should disappear.

--
~Mushr00m Head
http://members.cox.net/mushroomhead/
Sep 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: mch2k2 | last post by:
Hello All I have just started working on Pyhton. I need urgent help regarding Python Network Programming. I want the elctronic version of the Book: Foundations of Python Network programming by...
45
by: Joh | last post by:
hello, i'm trying to understand how i could build following consecutive sets from a root one using generator : l = would like to produce : , , , ,
5
by: mr.iali | last post by:
Hi Everyone I would like to get into software developent using a programming language like c++, java or pl/sql for oracle. I have no idea where to start from. Which language is there more...
2
by: Jackson Yap | last post by:
can someone kind enough to help me look at the attached html and js file? Why is it that the javascript menu could not work at www.apchosting.net but could work at...
11
by: Larry | last post by:
I will be teaching an eCommerce application development course using ASP.Net after many years of having taught classic ASP. (Course was interrupted by 18 months in the Middle East with my Army...
5
by: Kevin Carne | last post by:
First, Merry Christmas. I have been doing intensive Java programming for two years in school (no choice on the language), but now I need to return to C++ because my resume is filled with it both in...
9
by: Brian Hampson | last post by:
I am trying to determine all the groups which the current user has permissions to add a member. Here's my code: foreach (System.DirectoryServices.SearchResult ADSearchres in...
5
by: Y2J | last post by:
I am working through this book on C++ programming, the author is speaking of using linked lists. He gave and example which I found confusing to say the least. So I rewrote the example in a way that...
2
by: dydx13 | last post by:
Hello there, Basically, what I want to do is to develop a GUI-based file sharing program for myself. This is strictly for educational purposes only. Do you know of any good books out there that...
2
by: _A_C-ker_ | last post by:
Hello geek(s), I'm in desperate need of graphics programming using C language. Does anyone have material or web-links that explain graphics programming in- detail? I would appreciate your help...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?

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.