ローカル変数【Local variables】

A variable declared inside any function is local. The scope of a local variable is limited to the function range inside which it is declared. A local variable can be initialized by outcome of any expression. Every call of the function initializes a local variable. Local variables are stored in memory area of the corresponding function.

関数の中で宣言されたものがローカル変数です。ローカル変数の有効範囲は、宣言したその関数内に限定されます。ローカル変数は、任意の式の結果で初期化する事ができます。関数の呼び出しによって、ローカル変数は初期化されます。ローカル変数は、対応する関数のメモリ領域に格納されます。

Examples:

例:

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">