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 859039
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T08:37:26+00:00 2026-05-15T08:37:26+00:00

I recently came across a rather unusual coding convention wherein the call for a

  • 0

I recently came across a rather unusual coding convention wherein the call for a function returning “void” is prefixed with (void).

e.g.

(void) MyFunction();  

Is it any different from the function call like:

MyFunction();  

Has it got any advantage or is it yet another needless but there coding convention of some sort?

  • 1 1 Answer
  • 0 Views
  • 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. Editorial Team
    Editorial Team
    2026-05-15T08:37:26+00:00Added an answer on May 15, 2026 at 8:37 am

    Some functions like printf() return a value that is almost never used in real code (in the case of printf, the number of characters printed). However, some tools, like lint, expect that if a function returns a value it must be used, and will complain unless you write something like:

    int n = printf( "hello" );
    

    using the void cast:

    (void) printf( "hello" );
    

    is a way of telling such tools you really don’t want to use the return value, thus keeping them quiet. If you don’t use such tools, you don’t need to bother, and in any case most tools allow you to configure them to ignore return values from specific functions.

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

Sidebar

Related Questions

Recently I came across a gcc extension that I have found rather useful: __attribute__(cleanup)
I recently came across a coding standard claiming that you should never use public
I recently came across a way to develop pluggable application modules when using ASP.NET
i recently came across an exciting jquery plugin for image overlays http://jobyj.in/adipoli/ it says
I recently came across this line in a PHP script: $_REQUEST['start_date']=$date; Is it allowed
I recently came across the following piece of code. It doesn't look valid because
I recently came across this article , discussing how to leverage mod_cluster to create
I recently came across Linsched where one can simulate in user-space some of the
I recently came across a great data structures book, Data Structures Using C (c)
I recently came across Erlang, the programming language, and I've become interested in developing

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.