Tagged Questions

0
votes
2answers
36 views

Printing out hex values of a char* array in C gives odd values for binary input.

Here's an odd problem that's been stumping me for a bit. The program is written in C89, and it reads a file into a char* array 16 bytes at a time (using fread and a size of sizeof …
14
votes
7answers
673 views

Is “The C Programming Language” (book) current?

Is the version of C taught by this rather old, but frequently mentioned, book the same as that which is being used in the real world today? If not, could anyone list or point to …
28
votes
26answers
2k views

Is there any reason to use C instead of C++ for embedded development?

Question I have two compilers on my hardware C++ and C89 I'm thinking about using C++ with classes but without polymorphism (to avoid vtables). The main reasons I’d like to use C …
1
vote
7answers
260 views

What techniques/strategies do people use for building objects in C (not C++)?

I am especially interested in objects meant to be used from within C, as opposed to implementations of objects that form the core of interpreted languages such as python.
0
votes
6answers
289 views

The bounds on void-pointers in ANSI C89/ISO C90

Is there a way to portably determine the upper and lower bound on void-pointer values in ANSI C89/ISO C90? (I currently do not have a copy of the standard with me (I have one at ho …
2
votes
4answers
445 views

Are prototypes required for all functions in C89, C90 or C99?

To be truly standards-compliant, must all functions in C (except for main) have a prototype, even if they are only used after their definition in the same translation unit?
2
votes
3answers
249 views

Increase a struct pointer with half the struct size

I just got an interesting problem to take care of, and I see no neat way to solve it. I have two base data structures that represents a complex graph, declared something like thi …
3
votes
4answers
489 views

Why can’t gcc find the random() interface when -std=c99 is set?

I do "#include <stdlib.h>" at the top of the source. Example compilation: /usr/bin/colorgcc -std=c99 -fgnu89-inline -g -Wall -I/usr/include -I./ -I../ -I../../ -I../../../ …
4
votes
3answers
248 views

A way to convert byte stream to packet stream in C89 on an embedded device.

I’m working on with an embedded device that is connected to PC using rs232 (rs232 over USB). I’m thinking about developing my own protocol: <MAGIC><LENGTH><BINARY …
6
votes
2answers
360 views

Recursive declaration of function pointer in C

I'd like to declare a function that returns a pointer to a function of the same type. I would like to use it to implement state machines like the one below: typedef event_handle …
0
votes
2answers
125 views

How to create VS solution for existing c project so that VS picks new files automatically?

I would like to port an embedded application to x86 to create an emulator. We decided to give VS2008 a try but I'm not sure how to make vs to understand our existing directory stru …
0
votes
1answer
248 views

Better way to forward declare typedef’d structures in C89?

struct SomeStruct; typedef struct SomeStruct SomeStruct; The above works, but is there a simpler (or better) way?
6
votes
2answers
322 views

Does floor() return something that’s exactly representable?

In C89, floor() returns a double. Is the following guaranteed to work? double d = floor(3.0 + 0.5); int x = (int) d; assert(x == 3); My concern is that the result of floor migh …
3
votes
5answers
563 views

Type to use to represent a byte in ANSI (C89/90) C?

Is there a standards-complaint method to represent a byte in ANSI (C89/90) C? I know that, most often, a char happens to be a byte, but my understanding is that this is not guarant …