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

Copy 4 byte block into a char array

Hi,

I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?

Thanks,

Barry.

Jun 21 '06 #1
10 9319
b...@yahoo.com wrote:
ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


Write a function or macro.

It's called "modular design" where instead of copy/pasting the same
code snippet you found on snippets.org you actually build up a program
from a design where you abstract out common functionality to a body,
almost a "library" if you will, of support code for your application or
project.

Tom

Jun 21 '06 #2
bg***@yahoo.com writes:
Hi,

I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


You could probably try this:

memcpy(&arr[12],&tmp,sizeof(int));

Just make sure you know exactly what you're doing. For example int
doesn't need to be 4 byte long.

--
Ioan - Ciprian Tandau
tandau _at_ freeshell _dot_ org (hope it's not too late)
(... and that it still works...)
Jun 21 '06 #3
<bg***@yahoo.com> wrote in message
news:11**********************@g10g2000cwb.googlegr oups.com...
I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


You can't, portably.

1. The endianness of a particular machine may cause the bytes to be assigned
to different chars than what you've listed above.
2. element[12] may not have proper alignment for an int, causing a crash.
3. sizeof(int) may not be 4, causing more than 4 elements of your array to
be modified.

This is why folks write macros (which assign the bytes in a specific order)
for such needs.

S

--
Stephen Sprunk "Stupid people surround themselves with smart
CCIE #3723 people. Smart people surround themselves with
K5SSS smart people who disagree with them." --Aaron Sorkin
--
Posted via a free Usenet account from http://www.teranews.com

Jun 21 '06 #4
On Wed, 21 Jun 2006 13:17:46 -0700, bg_ie wrote:
int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


if you know that you're on a big-endian machine and sizeof char * 4 ==
sizeof int, you could theoretically do:

int *slice;
slice = &arr[12];
*slice = tmp;

but that's obviously unportable as hell

Jun 21 '06 #5
Stephen Sprunk wrote:
How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


You can't, portably.


....sorta.

In my projects I try to autodetect certain platforms and use memcpy if
possible, otherwise yeah I extract bytes and store in order.

Tom

Jun 21 '06 #6
bg***@yahoo.com writes:
I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


int isn't necessarily 4 bytes, bytes aren't necessarily 8 bits, and
the value 0x01020304 isn't necessarily stored in the order 1, 2, 3, 4;
it's commonly 4, 3, 2, 1, but it could theoretically be in any of the
24 possible orders.

If you want to break the value of tmp down into 4 8-bit quantities,
and store then in successive elements of your array (it it called
"arr" or "ThePacket3"?), the only portable way to do it is by copying
each byte individually, after extracting them using shifts and masks.

If you're willing to make non-portable assumptions about how an int is
represented, you can use memcpy(), but your code will break when
ported to a system with different byte ordering.

If you're trying to guarantee network byte ordering, there are
functions that will handle this for you ("ntohl" and friends), but
they're not part of standard C. If your system has them, searching
your documentation for "ntohl" should be enough to get you started.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jun 21 '06 #7
On 21 Jun 2006 21:00:19 +0000, Nelu <sp*******@gmail.com> wrote:
bg***@yahoo.com writes:
Hi,

I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


You could probably try this:

memcpy(&arr[12],&tmp,sizeof(int));

Just make sure you know exactly what you're doing. For example int
doesn't need to be 4 byte long.


And make sure that an int on the system is big-endian otherwise the
result will not be as specified.
Remove del for email
Jun 22 '06 #8
On Wed, 21 Jun 2006 16:26:03 -0500, James <ho**********@hotmail.com>
wrote:
On Wed, 21 Jun 2006 13:17:46 -0700, bg_ie wrote:
int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?

if you know that you're on a big-endian machine and sizeof char * 4 ==
sizeof int, you could theoretically do:

int *slice;
slice = &arr[12];
*slice = tmp;


You need a cast on the pointer assignment and the code will invoke
undefined behavior if arr[12] is not properly aligned for an int.

but that's obviously unportable as hell

Remove del for email
Jun 22 '06 #9
bg***@yahoo.com wrote:

I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?


Assuming your specs are accurate, and you change the type of tmp to
unsigned long, you can do it independant of endianism etc. by using
values, not bit patterns:

unsigned char ThePacket[100];
unsigned long tmp;
int i;

for (i = 3; i >= 0; i--, tmp /= 256)
ThePacket[12 + i] = tmp % 256;

You should be using unsigned items for both tmp and ThePacket. tmp
must be a long to guarantee 32 bits available.

If it can the compiler will probably optimize the modulo and
division operations into shifts and masks. Writing portable code
isn't all that hard, is it?

Notice that the values 3 and 12 above can be defined as FIELDSZ and
FIELDLOCN, or whatever nomenclature suits you.

--
"I don't know where bin Laden is. I have no idea and really
don't care. It's not that important." - G.W. Bush, 2002-03-13
"No, we've had no evidence that Saddam Hussein was involved
with September the 11th." - George Walker Bush 2003-09-17
Jun 22 '06 #10
bg***@yahoo.com wrote:
Hi,

I have an array as follows -

char arr[100];

Now I wish to copy the following int -

int tmp = 0x01020304;

into this array, at element[12].

This following would have the same result -

ThePacket3[12] = 1;
ThePacket3[13] = 2;
ThePacket3[14] = 3;
ThePacket3[15] = 4;

How can I do this without breaking up my int into 4 bytes and assigning
each element one by one?

Why that requirement ?
The obvious way is to bitshift to the right, mask
and assign the 4(assuming that's the size of your ints) bytes in the int
to the individual char array elements.
Jun 22 '06 #11

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

Similar topics

9
by: Thomas J. Clancy | last post by:
I was wondering if anyone knew of a way to use std::copy() and istream_iterator<>/ostream_iterator<> write a file copy function that is quick and efficient. Doing this messes up the file because...
11
by: Peter | last post by:
Hi how can I compare two byte arrays in VB.NET Thank Peter
4
by: Simon Schaap | last post by:
Hello, I have encountered a strange problem and I hope you can help me to understand it. What I want to do is to pass an array of chars to a function that will split it up (on every location where...
15
by: Kueishiong Tu | last post by:
How do I convert a Byte array (unsigned char managed) to a char array(unmanaged) with wide character taken into account?
8
by: intrepid_dw | last post by:
Hello, all. I've created a C# dll that contains, among other things, two functions dealing with byte arrays. The first is a function that returns a byte array, and the other is intended to...
15
by: Kueishiong Tu | last post by:
How do I copy the content of a string in one encoding (in my case big5) to a char array (unmanaged) of the same encoding? I try the following String line = S"123æ°´æ³¥"; char buffer; ...
3
by: marfi95 | last post by:
Hi all. I need to copy a byte array into a string, but starting at a specific location in the byte array. This is where I get hung up. For example if my byte array is (100) big, I might want to...
8
by: mast2as | last post by:
I almost apologize to ask this question but I have been starting at this code for a bit of time and don't understand what's wrong with it. I am not arguing about the fact it's good or not coding,...
2
by: =?Utf-8?B?QmFydE1hbg==?= | last post by:
Greetings, I am trying to copy an unmanaged buffer into a mananged buffer, and trying to use marshalling, and I am not having any success because it doesn't seem to complie. Basically I am...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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
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...
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
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
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

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.