Tagged Questions
5
votes
5answers
123 views
In a byte, how to swap the 4 higher bits with its 4 lower bits
I had an interview yesterday.
One of the question i've been asked was:
how can one replace the 4 higher bits of a byte with its 4 lower bits.
We're talking on native C here, btw.
For example, ...
1
vote
1answer
45 views
Changing a value inside an array of bits
I have a "bitmap" lets say, 64 wide. Meaning 8 bits per Byte. 0000 0000 and let's say I want to activate the second bit, 0100 0000.
I tried making an array of unsigned char and using memcpy.
...
0
votes
1answer
42 views
Store bytes into correct wrapper
I am currently developing an app for iOS that parses libcap formatted files. For that, I need to implement the different protocols that will appaear in the files I parse. My problem is that I don't ...
-2
votes
1answer
69 views
In C programming, what does “emit” do?
I recently tried to expand my knowledge of the C language and I came across a program that used emit, to possibly emit a byte.
__declspec(naked) void marker_begin() {
__asm {
_emit 0x51;
...
0
votes
0answers
83 views
Read and write bytes in C (from/in file)
I have to solve the following problem in C for the operating systems class:
At the command line three file are given, two for input, one for output.
The output file is obtained from input files, as ...
0
votes
4answers
112 views
Java ByteArray equivalent in C or C++
What are the equivalent for java byte in C,C++
byte[] itemsArray;
itemsArray = new byte[items *no];
itemsArray[x] = (byte) xyz;
unsigned char * itemsArray;
itemsArray = (unsigned char*) malloc ...
-1
votes
1answer
131 views
How to allocate specific number of bytes in a char array - memory management
I have a char array that I'm using as a memory pool. I already have all the bytes flagged to signify that they are free/not free. My question is how do I go about allocating 4 bytes of the array for ...
1
vote
4answers
167 views
How many bytes can I write at once on a TCP socket?
As the title says, is there a limit to the number of bytes that can be written at once on a connection-oriented socket?
If I want to send a buffer of, for example, 1024 bytes, can I use a
...
1
vote
3answers
118 views
How to print string first n bytes when the string's length is greater than n?
So I have a string that has a certain amount of bytes (or length). I say bytes because there is no NULL terminator at the end of the string. Though, I know how long the string is. Normally, as we all ...
2
votes
1answer
76 views
Equivalent of perl statement to C
What would the equivalent of this Perl line be in C?
unpack('J>', pack('B*', $s))
Depending on the build of Perl, it takes the binary representation of 4 or 8 bytes
...
0
votes
3answers
117 views
How to extract 2 bytes from a word, and how to make a word from 2 bytes (in C)?
I am trying to extract two bytes from a 16-bit word, and to make a 16-bit word from two bytes. This is what I have tried (byte = unsigned char, word = unsigned short):
Split grpix word into 2 bytes:
...
1
vote
7answers
176 views
Split array of m bytes into chunks of n bytes
I'm working on a program that manipulates brain data. It recieves a value represents the current magnitude of 8 commonly-recognized types of EEG (brain-waves). This data value is output as a series of ...
-1
votes
1answer
73 views
How to work with left and right bytes of a short int? [closed]
I have a short int, which is 2 bytes, but I only want to output the left byte to a file. How do I do this? I'm using binary functions open(), read(), write(), etc.
I would also like to shift the ...
0
votes
1answer
147 views
(C) Bit shifting/char placement in a short int variable
New to C.
The overall goal here is to put a character in a short int, and have it occupy the left byte of the short int rather than the right byte. To elaborate -
I'm trying to take a variable:
...
-1
votes
4answers
284 views
Bit masking in C - How to get first bit of a byte?
I have:
int8_t byteFlag;
and I want to get the first bit of it? I think I probably need to use & and >> but not sure how exactly. Any help?
0
votes
3answers
70 views
Mask by n bytes
I struggle masking a uint64_t variable by N bytes. I do not know N but I know it is 8 or less. My current code looks like this:
// uint64_t n is given
uint64_t mask;
for( mask = 0x00; n; n--) {
...
1
vote
2answers
85 views
How to convert a byte array to a integer?
Lets say I have this byte
uint8_t k[8]= {0,0,0,1,1,1,0,0};
Is there a way to get this to become a single integer or hex?
3
votes
1answer
208 views
Why does an 8 byte array (C) in 64-bit Ubuntu take 16 bytes?
I've recently been (relearning) lower level CS material and I've been exploring buffer overflows. I created a basic C program that has an 8 byte array char buffer[8];. I then used GDB to explore and ...
0
votes
1answer
219 views
Changing an ASCII string to an input hex bytestream in C++ win32
So I'm stuck atm with one specific thing. I use WM_GETTEXT to get the ASCII text from an edit field and after that I need to convert it to hex that corresponds to the input chars. Hard to explain, ...
-1
votes
1answer
147 views
C++ String of Bytes convert to byte datatype and count bytes
As the title says I try to convert to byte data type a C++ String of Bytes and count bytes.
The string I get from textbox will contain a series of one byte hexadecimal numbers, but I need to send it ...
0
votes
2answers
209 views
bit and byte interpretation in AVR C
I know this may be wrong section for this but my problem is Microcontroller programming specific (AVR mostly)!
I am sending bytes between two AVR atmega8 using Uart where each bit in the byte stands ...
1
vote
6answers
167 views
String to Long conversion differs in C and Java, why?
I have one String like "01030920316".
when i am going to convert this string in long and then convert in bytes then its given below output for java
output in java : Tag in bytes : 0, 0, 0, 0, 61, ...
1
vote
2answers
73 views
File and networking portability among different byte sizes
In C, the fread function is like this:
size_t fread(void *buf, size_t max, FILE *file);
Usually char* arrays are used as buf. People usually assume that char = 8 bit. But what if it isn't true? ...
1
vote
0answers
45 views
SWIG: converting java:byte[] to C:(void*) [duplicate]
Possible Duplicate:
Pass an array to a wrapped function as pointer+size or range
I'm currently learning swig and I'm playing with the C api to wrap stdio.h. So, my wig file look like this:
...
1
vote
6answers
236 views
how to create pointer to a bit in c-language
As we know a in c-language char pointer traverse memory byte by byte i.e. 1 byte each time,
and integer pointer 4 byte each time(in gcc compiler), 2 byte each time(in TC compiler).
for example:
...
1
vote
2answers
157 views
read byte by byte from memory without system call or a library function in C
I want to move information byte by byte from one memory location to another without using any library function. Am using a 16bits architecture emulated in qemu and this code is part of tiny small ...
0
votes
2answers
279 views
How can I convert little endian to big endian using htonl
I have struct with the following elements. Plus the structure is complety padded.
typedef struct {
uint16_t a;
uint16_t b;
uint8_t c;
uint8_t d;
uint8_t e[6];
} ad;
This ...
0
votes
2answers
133 views
printing byte chars in C
i have an input c-string that seems to be in bytes or octets.
when i print it by doing
printf("this is string[%s]\n", inputCstr);
it doesn't print the whole thing.
so i tried to loop it like
for ...
14
votes
5answers
424 views
Is there any reason not to use fixed width integer types (e.g. uint8_t)?
Assuming you're using a compiler that supports C99 (or even just stdint.h), is there any reason not to use fixed width integer types such as uint8_t?
One reason that I'm aware of is that it makes ...
-1
votes
2answers
127 views
Byte array in C with data from files with zeros inside
I need to edit each byte in an application, and I need to store it somewhere. First I used char* or unsigned char*, but when I read a more complex files which contains zero's the whole thing doesn't ...
0
votes
3answers
412 views
How to write a byte to register with specific memory address?
I want to write a byte to register with specific memory address (0x1228A432)
But, this register has a following structure:
Bits | Access | Name | Reset | Description |
[31:8] | Read only ...
2
votes
2answers
225 views
2 byte short into 2 byte string in C?
Any way to convert a a 2 byte short (normal short) into just a 2 byte string (char*) after using htons on that short. The thing is that the htons method returns an int (4 bytes), how do I put it into ...
0
votes
2answers
126 views
C bytes - can't output char (only 8 bits)
Please take a look at my function:
int getByte(int x, int n) {
int oneOnes = 255 << ( n << 3);
int compute = oneOnes & x;
//FIND A WAY TO RETURN CHAR (NOT INT)
char result ...
0
votes
2answers
49 views
C bytes - take off excess zeros (make it a char?)
Hi I'm new to dealing with bytes and low level programming. Currently, I have an int (32 bits)....so it looks something like this:
0000000 10011011 00000000 00000000
I'm trying to output ONLY the ...
0
votes
3answers
119 views
48 byte binary to 6 byte binary
I read a 17 byte hex string from command line "13:22:45:33:99:cd" and want to convert it into binary value of length 6 bytes.
For this, I read a 17 byte hex string from command line ...
2
votes
4answers
1k views
C program to check little vs. big endian [duplicate]
Possible Duplicate:
C Macro definition to determine big endian or little endian machine?
int main()
{
int x = 1;
char *y = (char*)&x;
printf("%c\n",*y+48);
}
If it's little ...
0
votes
2answers
294 views
Treating an unsigned int address as a pointer and dereferencing it as a byte array
So, I have an unsigned int variable with a decimal value address stored on it, let's say unsigned int var = 1232342, what I am trying to do is, without knowing the type of the variable but knowing the ...
0
votes
1answer
104 views
swap bits in different positions in 2 char_type variables
I would like to swap a segment of bits between 2 unsigned char_type variables:a and b. How to address it in C language if the segment is not sequential? For example, a is 011*001*10, input segment ...
1
vote
3answers
70 views
What is the purpose of the byte size of the type of a variable if I know the address of the variable?
I am not getting the whole purpose of working with the byte size of a variable by knowing the address of it. For example, let's say I know where an int variable is stored, let's say it is stored in ...
1
vote
3answers
135 views
swap a length of bits in 2 bytes
I would like to input 2 unsigned char variables:a and b. If use a(0) for bit 0 in a, I would like to swap a(6) to a(1) with b(6) to b(1). Finally I wish to get 2 new unsigned char_type variables:a1 ...
0
votes
2answers
142 views
Size of struct NOT equal to the size of its content [duplicate]
Possible Duplicate:
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
I have the next code:
http://ideone.com/brmRy
#include <stdio.h>
#include ...
0
votes
1answer
239 views
Difference between byte size of C-String
I been working in a project for my Data Networks class and they ask me to concatenate a header like this:
struct ip
{
unsigned long a;
unsigned long b;
unsigned int l;
} IP;
And a ...
0
votes
1answer
134 views
C++/SDL: Creating a FILE structure using a byte array
The SDL_image API allows you to pass in a FILE* and get an SDL_Surface*.
Currently, I'm designing a map archive.
One of the files is a tileset. It will be a PNG image (Great format with it's lossless ...
1
vote
2answers
366 views
How can I get the least significant byte of a variable in C
I'm trying to write a C function that will print a word consisting of the least significant
byte of x, and the remaining bytes of y. For example if x = 0x89ABCDEF and y =
0x76543210, this should give ...
0
votes
3answers
299 views
How to print the byte representations of a short int C object [duplicate]
Possible Duplicate:
Print an int in binary representation using C
How would I print the byte representations of a short int, and double in C.
As in lets say I have a function ...
0
votes
3answers
177 views
How do you convert an unsigned int[16] of hexidecimal to an unsigned char array without losing any information?
I have a unsigned int[16] array that when printed out looks like this:
4418703544ED3F688AC208F53343AA59
The code used to print it out is this:
for (i = 0; i < 16; i++)
printf("%X", ...
1
vote
3answers
987 views
Convert Bytes to Int / uint in C
I have a unsigned char array[248]; filled with bytes. Like 2F AF FF 00 EB AB CD EF .....
This Array is my Byte Stream which I store my Data from the UART (RS232) as a Buffer.
Now I want to convert ...
0
votes
3answers
115 views
Sizeof next byte in byte array
I have an unsigned char and I add integers to it but I want to get the sizeof next byte (i.e sizeof unsigned short int or unsigned int and so on).
The following code demonstrates what I want:
...
5
votes
3answers
434 views
Does sizeof return the number of bytes or the number of octets of a type in C?
Simply put in C and variants (unlike that wuss java with its virtual machine) the size of primitive types on different targets can vary greatly, and there is really no guarantee unless you use the ...
-1
votes
2answers
264 views
Convert C to Java with binary byte conversion code
I need a little help with the some code that I just received help with. Basically, this code is written in Java but I need it to be able to work in C as well. I have tested the code already and it ...


