Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

83%
+8 −0
Q&A Compile-time rounding with the pre-processor

When searching the Internet, I came across this SO post Rounding in C Preprocessor but immediately noted that none of the answers are showing a way to perform actual rounding - rather, they are doi...

3 answers  ·  posted 4mo ago by Lundin‭  ·  last activity 4mo ago by John C‭

Question c rounding floating-point c-preprocessor
#2: Post edited by user avatar Karl Knechtel‭ · 2026-06-01T16:21:12Z (4 months ago)
fix typo
  • When searching the Internet, I came across this SO post [Rounding in C Preprocessor](https://stackoverflow.com/questions/3279620/rounding-in-c-preprocessor) but immediately noted that none of the answers are showing a way to perform actual _rounding_ - rather, they are dooing _flooring_ to the nearest integer.
  • The post is actually misleading and got nothing to do with rounding, but with getting the appropriate integer type back from the macro. Yet it is the #1 search engine hit when searching for rounding the the preprocessor, which is kind of sad.
  • **Is there a way to _round_ a floating point expression to an integer at compile-time, using the pre-processor?**
  • I suppose such code could also either be written in a type-generic way accepting any of the common arithmetic types as input, or alternatively in a type safe manner only accepting one specific type as input. Is there an advantage in using one form or the other?
  • When searching the Internet, I came across this SO post [Rounding in C Preprocessor](https://stackoverflow.com/questions/3279620/rounding-in-c-preprocessor) but immediately noted that none of the answers are showing a way to perform actual _rounding_ - rather, they are doing _flooring_ to the nearest integer.
  • The post is actually misleading and got nothing to do with rounding, but with getting the appropriate integer type back from the macro. Yet it is the #1 search engine hit when searching for rounding the the preprocessor, which is kind of sad.
  • **Is there a way to _round_ a floating point expression to an integer at compile-time, using the pre-processor?**
  • I suppose such code could also either be written in a type-generic way accepting any of the common arithmetic types as input, or alternatively in a type safe manner only accepting one specific type as input. Is there an advantage in using one form or the other?
#1: Initial revision by user avatar Lundin‭ · 2026-06-01T09:10:39Z (4 months ago)
Compile-time rounding with the pre-processor
When searching the Internet, I came across this SO post [Rounding in C Preprocessor](https://stackoverflow.com/questions/3279620/rounding-in-c-preprocessor) but immediately noted that none of the answers are showing a way to perform actual _rounding_ - rather, they are dooing _flooring_ to the nearest integer. 

The post is actually misleading and got nothing to do with rounding, but with getting the appropriate integer type back from the macro. Yet it is the #1 search engine hit when searching for rounding the the preprocessor, which is kind of sad.

**Is there a way to _round_ a floating point expression to an integer at compile-time, using the pre-processor?**


I suppose such code could also either be written in a type-generic way accepting any of the common arithmetic types as input, or alternatively in a type safe manner only accepting one specific type as input. Is there an advantage in using one form or the other?