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

problems with copying/editing strings

Hello,

I am attempting to write a terminal interface program using PowerPC
Assembly/C, where I am using an integer-to-ASCII conversion algorithm.
Unfortunately, I have run into some difficulties that seem to deal
with the syntax/character types that am I using. Below is a segment of
my code which is intended to convert an integer to an array of ASCII
digits:
char * inttoascii(int val)
{
int i, temp1, temp2;
i = 0;
char * str;
temp1 = 1;
if(val < 0)
{
str[i] = '-';
val = val*-1;
i++;
}
while(val > temp1)
{
temp1 = temp1*10;
}
while(temp1 >= 10)
{
temp1 = temp1/10;
temp2 = val/temp1;
str[i] = temp2+48; *****
i++;
}
str[i] = '\0';
return(str);
}
The ***** line is where I'm having my problems; presumably adding 48
to a string element (i.e., a character) should convert that value to
its ASCII equivalent so it can be displayed on my terminal screen, but
when debugging the problem line doesn't seem to be doing anything at
all; presumably this is an issue of syntax that you can help me with.
I have also tried '0' and '0x30' in place of 48.

Another problem I have is with copying strings into other strings, for
example I have a help message that says:

strcopy(output, "+ for add, - for subtract, ? for help");

where strcopy is the following function:
void strcopy(char b[], char a[])
{
int i;

for (i = 0; a[i] != '\0'; i++)
b[i] = a[i];
b[i] = '\0';
}


When I try to do this conversion it gives me a machine check exception
in the simulator I'm using (SingleStep) something about error, memory
access in 0x0000000D) which it doesn't do if I use a normal strcopy
syntax where a and b are both declared as character pointers e.g. char
*a, char *b. Note that I do not have the standard library, standard
i/o or any other such libraries at my disposal for this program.

If anyone wants to see more of the code or can help me out, please
post a message here or e-mail me. Thanks!

Matt Lafer
University of Michigan
Nov 14 '05 #1
4 1385
Lafer <la****@yahoo.com> wrote:
I am attempting to write a terminal interface program using PowerPC
Assembly/C, where I am using an integer-to-ASCII conversion algorithm.
Unfortunately, I have run into some difficulties that seem to deal
with the syntax/character types that am I using. Below is a segment of
my code which is intended to convert an integer to an array of ASCII
digits:
> char * inttoascii(int val)
> {
> int i, temp1, temp2;
> i = 0;
> char * str;
> temp1 = 1;
> if(val < 0)
> {
> str[i] = '-';
You have some bad bug here: str has never been initialized, so it
probably points to some random place in memory. You have to allocate
enough memory and assign that to str before you can start to use it.
(There was another thread today about the question how long the
string can become in the worst case, i.e. how much memory you need
to allocate to be on the safe side.)
> val = val*-1;
> i++;
> }
> while(val > temp1)
> {
> temp1 = temp1*10;
> }
Lets assume that val is e.g. is 17. Then temp1 is now 100.
> while(temp1 >= 10)
> {
> temp1 = temp1/10;
First time round temp1 is 10, thesecond time it's 1.
> temp2 = val/temp1;
The first time round temp2 will be 1, the second time it's going
to be 17, which you probably don't want. You need another line
where you do

val %= temp1;

so that you get temp2 set to 7 on the second time through the loop.
> str[i] = temp2+48; *****
Making sure that this works also with non-ASCII representations is
extremely simple and doesn't cost you anything but just makes your
program easier to read. Use

str[ i ] = temp2 + '0'.

(of course only after having assigned enough memory to str).
> i++;
> }
> str[i] = '\0';
> return(str);
Now here's another possible pitfall. If you should make str an
automatic array (instead of allocating memory for the pointer or
making it a static array) you would return a value that goes
out of scope the moment you leave the function and thus can't be
used by the caller.
> } The ***** line is where I'm having my problems; presumably adding 48
to a string element (i.e., a character) should convert that value to
its ASCII equivalent so it can be displayed on my terminal screen, but
when debugging the problem line doesn't seem to be doing anything at
all; presumably this is an issue of syntax that you can help me with.
I have also tried '0' and '0x30' in place of 48. Another problem I have is with copying strings into other strings, for
example I have a help message that says: strcopy(output, "+ for add, - for subtract, ? for help"); where strcopy is the following function: > void strcopy(char b[], char a[])
> {
> int i;
>
> for (i = 0; a[i] != '\0'; i++)
> b[i] = a[i];
> b[i] = '\0';
> }

When I try to do this conversion it gives me a machine check exception
in the simulator I'm using (SingleStep) something about error, memory
access in 0x0000000D) which it doesn't do if I use a normal strcopy
syntax where a and b are both declared as character pointers e.g. char
*a, char *b. Note that I do not have the standard library, standard
i/o or any other such libraries at my disposal for this program.


Looks a lot as if you pass an unitialized pointer to that function.
If you do something like

char *output;
strcopy(output, "+ for add, - for subtract, ? for help");

you're in for such an error because 'output' doesn't point to any
memory you own. It might just by chance point to memory location
0x0D (but don't count on that). BTW, why don't you use the classic
construct

void strcopy( char *b, const char *a )
{
while ( *b++ = *a++ )
/* empty */ ;
}

Regards, Jens
--
\ Jens Thoms Toerring ___ Je***********@physik.fu-berlin.de
\__________________________ http://www.toerring.de
Nov 14 '05 #2
Je***********@physik.fu-berlin.de writes:
Lafer <la****@yahoo.com> wrote:
I am attempting to write a terminal interface program using PowerPC
Assembly/C, where I am using an integer-to-ASCII conversion algorithm.

str[i] = temp2+48;


Making sure that this works also with non-ASCII representations is
extremely simple and doesn't cost you anything but just makes your
program easier to read. Use

str[ i ] = temp2 + '0'.


Note that the OP says he wants to write an integer-to-ASCII converter,
as opposed to an integer-to-text-in-the-host-encoding converter. If he
really means that, 48 would in fact be correct and '0' wrong on
non-ASCII systems.

I don't find it obvious what the OP means. "Terminal interface program"
could refer to a program which is supposed to run on a non-ASCII system,
but interfaces with an ASCII terminal.
--
,--. Martin Dickopp, Dresden, Germany ,= ,-_-. =.
/ ,- ) http://www.zero-based.org/ ((_/)o o(\_))
\ `-' `-'(. .)`-'
`-. Debian, a variant of the GNU operating system. \_/
Nov 14 '05 #3
Martin Dickopp <ex****************@zero-based.org> wrote:
Je***********@physik.fu-berlin.de writes:
Lafer <la****@yahoo.com> wrote:
I am attempting to write a terminal interface program using PowerPC
Assembly/C, where I am using an integer-to-ASCII conversion algorithm.

str[i] = temp2+48;


Making sure that this works also with non-ASCII representations is
extremely simple and doesn't cost you anything but just makes your
program easier to read. Use

str[ i ] = temp2 + '0'.

Note that the OP says he wants to write an integer-to-ASCII converter,
as opposed to an integer-to-text-in-the-host-encoding converter. If he
really means that, 48 would in fact be correct and '0' wrong on
non-ASCII systems. I don't find it obvious what the OP means. "Terminal interface program"
could refer to a program which is supposed to run on a non-ASCII system,
but interfaces with an ASCII terminal.


Yupp, of course you're right, I just carelessly assumed that the OP
meant int-to-string conversion when s/he wrote integer-to-ASCII.

Regards, Jens
--
\ Jens Thoms Toerring ___ Je***********@physik.fu-berlin.de
\__________________________ http://www.toerring.de
Nov 14 '05 #4
Martin Dickopp <ex****************@zero-based.org> scribbled the following:
Je***********@physik.fu-berlin.de writes:
Lafer <la****@yahoo.com> wrote:
I am attempting to write a terminal interface program using PowerPC
Assembly/C, where I am using an integer-to-ASCII conversion algorithm.

str[i] = temp2+48;
Making sure that this works also with non-ASCII representations is
extremely simple and doesn't cost you anything but just makes your
program easier to read. Use

str[ i ] = temp2 + '0'.

Note that the OP says he wants to write an integer-to-ASCII converter,
as opposed to an integer-to-text-in-the-host-encoding converter. If he
really means that, 48 would in fact be correct and '0' wrong on
non-ASCII systems. I don't find it obvious what the OP means. "Terminal interface program"
could refer to a program which is supposed to run on a non-ASCII system,
but interfaces with an ASCII terminal.


He said "integer-to-ASCII" but who's to say he didn't mean "integer-
to-whatever-happens-to-be-this-platform's-encoding"? The latter would
be more useful in most common situations. Getting these muddled up can
be the result of an "all the world's ASCII" viewpoint.

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"Immanuel Kant but Genghis Khan."
- The Official Graffitist's Handbook
Nov 14 '05 #5

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

Similar topics

4
by: Dan Weeb | last post by:
Hi All, I have struggled through this far with help from many of you so thanks. I am stuck again. I am really new to this so don't be harsh :-) There are a few problems. You can run the script...
5
by: Thomas Lotze | last post by:
Hi, another question: What's the most efficient way of copying data between two file-like objects? f1.write(f2.read()) doesn't seem to me as efficient as it might be, as a string containing...
0
by: google account | last post by:
*sigh* I have done all that I know how.... I am using fedora core1, I believe. I have updated the MySQL version to 4.0.17-0. I am trying this: rpm -i MySQL-python2.1-0.9.2-1.i386.rpm
0
by: Richard Taylor | last post by:
User-Agent: OSXnews 2.07 Xref: number1.nntp.dca.giganews.com comp.lang.python:437315 Hi I am trying to use py2app (http://undefined.org/python/) to package a gnome-python application...
3
by: Bill C. | last post by:
Hello, I know this has been discussed a lot already because I've been searching around for information the last few weeks. I'm trying to implement a DataGridComboBoxColumn class. I've found...
1
by: Dan Bass | last post by:
I'm looking to develop a listbox with in-place editing where as each item is selected, it grows to fit in all the text boxes. When the item is deselected, it shrinks back to its original size. The...
0
by: Jeff Connelly | last post by:
Using Visual C# .NET 1.1. I'm editing a .resx file of strings, using the "Data" view (not the "XML" view). I can't find any way of moving or inserting rows in the middle (I assume you could do...
18
by: TORQUE | last post by:
Hi, Im wondering if anyone can help me with a problem. I have a form with more than 50 unbound fields. Some of the fields will be blank from time to time. This seems to be where im having...
409
by: jacob navia | last post by:
I am trying to compile as much code in 64 bit mode as possible to test the 64 bit version of lcc-win. The problem appears now that size_t is now 64 bits. Fine. It has to be since there are...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: 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: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...

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.