473,388 Members | 1,493 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,388 software developers and data experts.

help plz

I'm a C proram which is used to read datas from a table in
text format and compare with another table in the same format. and we
have to highlight the value or mark the value to show the difference.
the procedure is as follows.

dd mm yy hr mn sc nr nf1 nf2 ng1 T451 T452 Q1 Q2 SFA
12 03 06 08 25 20 595 76 9 8 87 56 09 43 On
12 03 06 08 35 14 76 09 89 87 5 47 87 98 OFF
Both table are the same except that the values changes.
The data in table A is a standard. and that of table B is current data.
As you can see that both tables have time and date. I have to take the
values of the parameters from both the tables at an approximately equal
time and compare it. If the values of table B is < or equal to the data
in table B. then it's O.K. But if it exceeds then I need that data in
Table B to be marked or highlighted.

The no of rows are unlimited. and that of columns are the
same as shown in the format.

Both the tables are of the same format - meaning the columns
order does not change. The Dead lline for this project is 23rd of this
month. I tried to compare it by getting each character from the
file.But when Marking or highlighting the output is wrong.

Kindly help me with this program as soon as possible. Thank you.

Yours
Harinath

Feb 20 '06 #1
4 1615
ha******@gmail.com wrote:

Both the tables are of the same format - meaning the columns
order does not change. The Dead lline for this project is 23rd of this
month. I tried to compare it by getting each character from the
file.But when Marking or highlighting the output is wrong.

Kindly help me with this program as soon as possible. Thank you.

Post your attempt and someone will, ask us to do your homework and
you'll be out of luck.

--
Ian Collins.
Feb 20 '06 #2
ha******@gmail.com wrote:
I'm a C proram which is used to read datas from a table in
text format and compare with another table in the same format. and we
have to highlight the value or mark the value to show the difference.
the procedure is as follows.

dd mm yy hr mn sc nr nf1 nf2 ng1 T451 T452 Q1 Q2 SFA
12 03 06 08 25 20 595 76 9 8 87 56 09 43 On
12 03 06 08 35 14 76 09 89 87 5 47 87 98 OFF
Both table are the same except that the values changes.
The data in table A is a standard. and that of table B is current data.
As you can see that both tables have time and date. I have to take the
values of the parameters from both the tables at an approximately equal
time and compare it. If the values of table B is < or equal to the data
in table B. then it's O.K. But if it exceeds then I need that data in
Table B to be marked or highlighted.

The no of rows are unlimited. and that of columns are the
same as shown in the format.

Both the tables are of the same format - meaning the columns
order does not change. The Dead lline for this project is 23rd of this
month. I tried to compare it by getting each character from the
file.But when Marking or highlighting the output is wrong.

Kindly help me with this program as soon as possible. Thank you.


If you post your code, as it exists so far, with information on where
it is failing, the regulars here will help you out. For example, which
compiler are you using? Is it compiling? If so, what are the warning,
if any? Do you understand the implications behind them? Have you traced
your program through a debugger? Which function is failing? Where is
the code for the function? etc. etc. etc.

Just requesting like this won't get you anywhere.

Feb 20 '06 #3

See comments:

ha******@gmail.com wrote:
I'm a C proram which is used to read datas from a table in
text format and compare with another table in the same format.
If you can choice, I suggest you to analize the posibility of implement
it in another language. Perl is an usual alternative for this kind of
requirements.
and we
have to highlight the value or mark the value to show the difference.
the procedure is as follows.

Standard C has no way to "highlight". You will need use "xterm"
protocol to produce bolds, or create an HTML page, or something
similar.
dd mm yy hr mn sc nr nf1 nf2 ng1 T451 T452 Q1 Q2 SFA
12 03 06 08 25 20 595 76 9 8 87 56 09 43 On
12 03 06 08 35 14 76 09 89 87 5 47 87 98 OFF
Both table are the same except that the values changes.
The data in table A is a standard. and that of table B is current data.
As you can see that both tables have time and date. I have to take the
values of the parameters from both the tables at an approximately equal
time and compare it.
Afortunatlly, tables seems sorted according dates.
A possibilty to analize (?) is to use as first step a "diff" command,
and pass its output as input to your program
If the values of table B is < or equal to the data
in table B. then it's O.K. But if it exceeds then I need that data in
Table B to be marked or highlighted.

The no of rows are unlimited. and that of columns are the
same as shown in the format.

Both the tables are of the same format - meaning the columns
order does not change. The Dead lline for this project is 23rd of this
month. I tried to compare it by getting each character from the
file.But when Marking or highlighting the output is wrong.

3 days is a lot of time.
Kindly help me with this program as soon as possible. Thank you.

Yours
Harinath

Kind regards.

Feb 20 '06 #4
<ha******@gmail.com> wrote:
I'm a C proram which is used to read datas from a table in
text format and compare with another table in the same format. and we
have to highlight the value or mark the value to show the difference.
the procedure is as follows.

dd mm yy hr mn sc nr nf1 nf2 ng1 T451 T452 Q1 Q2 SFA
12 03 06 08 25 20 595 76 9 8 87 56 09 43 On
12 03 06 08 35 14 76 09 89 87 5 47 87 98 OFF


<snip>

I suppose you realize that we couldn't write the program for you, even if we
wanted to? We have not the foggiest idea what "approximately equal" times
are. You, or someone who gave you the assignment has to answer that. Have
you been given some auxiliary library to allow you to "highlight or mark"
the entries? Without such, the best you can do in C is an (output) file of
differences, .perhaps replacing "bad" entries with a single 0.

Are you familiar with pseudocode? It might help you divide the problem into
two parts, the logic part and the C part. The logic part, as I see it, is
to isolate two dates, compare them and make a decision as to whether to
proceed. If you decide to proceed make the actual comparison of fields and
do whatever "marking" entails. For testing purposes, it would probably be a
display on the monitor showing the failing fields.

Feb 20 '06 #5

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

Similar topics

21
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
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
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
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
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
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
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
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
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
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
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:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
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
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
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...

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.