Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 133823
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T06:30:07+00:00 2026-05-11T06:30:07+00:00

After programming in C for several years, I realized that I have been ignoring

  • 0

After programming in C for several years, I realized that I have been ignoring the C convention of returning zero from a function to indicate success. The convention seems semantically wrong to me, as zero is of course false. The problem is I like to name functions like is_valid_foobar(), and in order to accomodate the convention of ‘false means success’, I would have to be more vague… that is instead of:

if ( ! is_valid_foobar() ) {     return (error); } 

Other programmers write:

if ( validate_foobar() ) {      return (error); } 

And my implementation looks like:

int is_valid_foobar (int foobar ) {      if ( foobar < MAX_ALLOWED ) {           return TRUE;       }       return FALSE; } 

I haven’t actually caught any flak for this in code reviews. So I’m thinking it’s not such a terrible habit, but it is ‘unconventional’. I’m curious what people think.

I’m very careful about the choices I make for function and variable names, and a typical review comment is ‘the code is really clear’, and further it doesn’t bother me at all to have to type an extra ! at the front of the function call. But what sayest thou, oh mighty ones of S.O?

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T06:30:08+00:00Added an answer on May 11, 2026 at 6:30 am

    I’d say both are correct, for different purposes:

    If you’re performing a simple go/no-go validation, e.g. is_numeric(), then true and false work nicely.

    For something more elaborate, the 0==success paradigm is helpful in that it allows more than one error condition to be returned.

    In this case, the caller can simply test against 0, or examine the non-0 returns for a more-specific explanation of the failure. e.g. a file open call can fail due to non-existence, insufficient permissions, etc.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working with someone who's looking to get back into programming after several years
After years in embedded programming, I have to develop a Windows app. I dug
I've just started diving into Node.js after several years of PHP programming and I
I'm trying out several exercises from a Java programming book. I have the code
I was just thrust into Linux programming (Red Hat) after several years of C++
I'm in an introductory comp-sci class (after doing web programming for years) and became
After spending three weeks learning Objective-C and Cocoa programming for my work, I've been
I have used MS Money for several years now and due to my coding
I have been working with PHP for years and gotten a very good grasp
This should be relatively easy to do, but after several hours straight programming my

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.