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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:31:50+00:00 2026-05-23T18:31:50+00:00

In the C programming language, it is possible to omit a code block in

  • 0

In the C programming language, it is possible to omit a code block in the case of a single statement, for example:

if(1) exit();

Now, does this only apply to conditionals ?
Why is this not valid in the case of functions:

void f(int a) exit();
  • 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-23T18:31:51+00:00Added an answer on May 23, 2026 at 6:31 pm

    It’s a feature of C syntax. In BNF, a function definition is something like

    FUNC_DEF ::= TYPE IDENTIFIER "(" PARAM_LIST ")" BLOCK
    

    while a statement is

    STATEMENT ::= (EXPRESSION | DECLARATION | CONTROL | ) ";" | BLOCK
    BLOCK ::= "{" STATEMENT* "}"
    

    (simplifying to allow intermixed declarations and statements, which C++ allows but C doesn’t), and an if statement is

    CONDITIONAL ::= "if" "(" EXPRESSION ")" STATEMENT
    

    omitting the else part for now.

    The reason for this is that otherwise, you could write the function

    void no_op() {}
    

    as

    void no_op();
    

    but the latter syntax is already in use to denote a declaration.

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

Sidebar

Related Questions

Possible Duplicates: Is there any advantage of being a case-sensitive programming language? Why are
As Erlang is an almost pure functional programming language, I'd imagine this was possible:
I have created a turing-complete programming language (already proven) so it must be possible
Which programming language(s) were used to code Windows Vista?
In his The C++ Programming Language Stroustrup gives the following example for inc/dec overloading:
Possible Duplicate: Sizeof an array in the C programming language? Why is the size
VBA is a programming language so I'll assume this question is ok on SO.
Possible Duplicate: What is a computer programming language? No, really. I've struggled to come
Possible Duplicate: What does it mean when you say C# is component oriented language?
I have been reading Wikipedia's article on K programming language and this is what

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.