A local block is any portion of C program that is enclosed by the left curly brace ({) and the right curly brace (}), It could be function, if-else block anything.
A local block is any portion of a C program that is enclosed by the left brace “{” and the right brace “}”. A C function contains left and right braces, and therefore anything between the two braces is contained in a local block. An if statement or a switch statement can also contain braces, so the portion of code between these two braces would be considered a local block.
Chetan Varshney
A local block is any portion of C program that is enclosed by the left curly brace ({) and the right curly brace (}), It could be function, if-else block anything.
Chetan Varshney
If a C program that is enclosed by the left brace ({) and the right brace (}) is called as local block.
A C function contains left and right braces, and therefore anything between the two braces is contained in a local block.
If statement or a switch statement can also contain braces, so the portion of code between these two braces would be considered a local block.
Prakash Chetan
A local block is any portion of a C program that is enclosed by the left brace “{” and the right brace “}”. A C function contains left and right braces, and therefore anything between the two braces is contained in a local block. An if statement or a switch statement can also contain braces, so the portion of code between these two braces would be considered a local block.