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

71%
+3 −0
Q&A Should I cast to (void) when I do not use the return value

This is a bit opinionated, but personally, I would not do it. It would just clutter the code and could hide sources of bugs. But it depends a lot on what function it is. It's also hard to give a ve...

posted 3y ago by klutt‭  ·  edited 3y ago by klutt‭

Answer
#3: Post edited by user avatar klutt‭ · 2020-08-14T12:04:07Z (over 3 years ago)
  • This is a bit opinionated, but personally, I would definitely not do it. It would just clutter the code and could hide sources of bugs. But it depends a lot on what function it is.
  • It's also hard to give a very general answer to this. In many cases, the proper answer is "No, you should instead use the return value, because if you don't, you have no way of knowing if the function succeeded or not". So if you're casting away the result of `scanf`, then you're doing something wrong.
  • Casting is basically just a way of telling the compiler "Trust me, I know what I'm doing." I have seen lots of examples where people are trying to find bugs where a warning would have given them a very good clue, but since they are casting, the compiler yields no warning.
  • It's not necessarily a bad thing, but never use casting as your goto solution to make the compiler shut up. Always think it through carefully before you do it.
  • If you don't want to see a particular warning, use compiler flags to turn it off.
  • This is a bit opinionated, but personally, I would not do it. It would just clutter the code and could hide sources of bugs. But it depends a lot on what function it is.
  • It's also hard to give a very general answer to this. In many cases, the proper answer is "No, you should instead use the return value, because if you don't, you have no way of knowing if the function succeeded or not". So if you're casting away the result of `scanf`, then you're doing something wrong.
  • Casting is basically just a way of telling the compiler "Trust me, I know what I'm doing." I have seen lots of examples where people are trying to find bugs where a warning would have given them a very good clue, but since they are casting, the compiler yields no warning.
  • It's not necessarily a bad thing, but never use casting as your goto solution to make the compiler shut up. Always think it through carefully before you do it. Remember that warnings are there to help you.
  • If you don't want to see a particular warning, consider using compiler flags to turn it off.
#2: Post edited by user avatar klutt‭ · 2020-08-14T12:01:11Z (over 3 years ago)
  • This is a bit opinionated, but personally, I would definitely not do it. It would just clutter the code and could hide sources of bugs.
  • It's also hard to give a very general answer to this. In many cases, the proper answer is "No, you should instead use the return value, because if you don't, you have no way of knowing if the function succeeded or not".
  • Casting is basically just a way of telling the compiler "Trust me, I know what I'm doing." I have seen lots of examples where people are trying to find bugs where a warning would have given them a very good clue, but since they are casting, the compiler yields no warning.
  • If you don't want to see a particular warning, use compiler flags to turn it off.
  • This is a bit opinionated, but personally, I would definitely not do it. It would just clutter the code and could hide sources of bugs. But it depends a lot on what function it is.
  • It's also hard to give a very general answer to this. In many cases, the proper answer is "No, you should instead use the return value, because if you don't, you have no way of knowing if the function succeeded or not". So if you're casting away the result of `scanf`, then you're doing something wrong.
  • Casting is basically just a way of telling the compiler "Trust me, I know what I'm doing." I have seen lots of examples where people are trying to find bugs where a warning would have given them a very good clue, but since they are casting, the compiler yields no warning.
  • It's not necessarily a bad thing, but never use casting as your goto solution to make the compiler shut up. Always think it through carefully before you do it.
  • If you don't want to see a particular warning, use compiler flags to turn it off.
#1: Initial revision by user avatar klutt‭ · 2020-08-14T11:58:51Z (over 3 years ago)
This is a bit opinionated, but personally, I would definitely not do it. It would just clutter the code and could hide sources of bugs.  

It's also hard to give a very general answer to this. In many cases, the proper answer is "No, you should instead use the return value, because if you don't, you have no way of knowing if the function succeeded or not".

Casting is basically just a way of telling the compiler "Trust me, I know what I'm doing." I have seen lots of examples where people are trying to find bugs where a warning would have given them a very good clue, but since they are casting, the compiler yields no warning.

If you don't want to see a particular warning, use compiler flags to turn it off.