記憶度
3問
7問
0問
0問
0問
アカウント登録して、解答結果を保存しよう
問題一覧
1
It is a statement that informs the compiler about a functioning return type parameters and other attributes It is used to inform the compiler about a function before it is used the compiler uses the declaration to check for mismatches between the parameters of a function call and those in the function declaration
function declaration
2
It is a defining the variables that we receive the values passed on a function It is a part of a function declaration that specifies the parameter based on to the function it declares the variables that we receive the values passed to the function
parameter declaration
3
Refers the process of sending value the back of a function method or procedure this value is typically the result of the function execution
returning value
4
These are indelt function in c programming the prototype and data definitions of this function are present in their respective header files to use dysfunctions we need to include the header file in our program
standard library functions
5
Give examples about standard library functions
assert.h, ctype.h, math.h, string.h, time.h
6
The scope of local variables exist only within the function and can be access only by those functions their values can only be accessed if these variables are passed to other function
variable scope
7
What are the examples of variable scope
local scope, global scope, block scope, parameter scope, static scope
8
Variables declared inside a function or block
local scope
9
Variables declared outside all functions
global scope
10
Variable declared inside a block
block scope
11
Parameter function
parameter scope
12
Variables retain their values between function calls
static scope
13
It is a type of specifier that determines a variables lifetime linkage and memory location storage classes are used in c and c++ to define the scope visibility and duration of variables
variable storage class
14
What are some examples of variable storage classes
automatic storage class, register storage class, static storage class, external storage class
15
Variables with global lifetimes that exist and have a value throughout the execution of the program static variables must be initialized before programming execution
static storage class
16
Variables with local lifetimes that are allocated news storage each time execution controls passes to the block in which their defined there are not visible to code outside the block
automatic storage class
17
Variables that are similar to auto variables but they are stored in the cpu register
register storage class
18
Variables that are declared outside the functions before the main function they share variables among multiple sea files
external storage class
19
It is a method of processing the address of an argument in the calling function to a corresponding parameter in a code function in c the corresponding parameter is called function must be declared as a pointer In this programming allows function to directly access the modify the values of variables making it efficient for large data and avoiding memory duplication its variable for updating values and can be particularly useful when working with complex data structures
pass by reference
20
Easy refers to the process in which the programming or program repeats a certain section of a code in a similar way does in the programming languages with the program allows the user to call any function inside the very same function it is referred to as a........
recursion