python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Implementing PRI macros 'portably'
The C99 specified inttypes.h header includes macros for providing format specifiers for the fixed-width integer types provided by stdint.h (beginning with PRI). While stdint.h is on the 'freestanding...

Fraggle
Votes: 0
Answers: 2
How to compile C++ freestanding / baremetal with g++?
C++ has many aspects, included by default, that are not desirable or even functional on embedded bare metal / free standing platforms.
How can I configure g++ to compile C++ in a manner suitable for e...
SRobertJames
Votes: 0
Answers: 1
Freestanding C: Why does this function fail to return data depending on the structure of the array?
I'm currently watching a Udemy tutorial on basic graphical OS development, which has just begun to explain how to render text in VBE graphical mode using bitmap fonts. The presenter creates a function...
Charles Buchanan
Votes: 0
Answers: 0
How can I detect if C malloc available for freestanding target platform?
In C, how can I detect if a some form of malloc has been made available, regardless of target platform or compiler? Is it enough to detect _STDLIB_H_?
I would like to include a header utility functio...
codechimp
Votes: 0
Answers: 1