To exit the function and return control to the calling function
To pause the function temporarily
To call the function again
To exit the program
Monitor
Function
Program
Structure
switch
goto
go back
return
Call by reference
Call by value
Call by reference by passing base address to a function
Both A and C
Array
Linked list
Binary tree
Stack
exit
break
continue
Value of elements in array
First element of the array
Base address of the array
Address of the last element of array
static
new
volatile
Circular definition
Complex definition
Procedure
Union
ctype.h
stdio.h
conio.h
math.h
string.h
graphic.h
ceil(1.66)
floor(1.66)
roundup(1.66)
roundto(1.66)
Return
GOTO
Switch
int a(char *s)
void b(int a[], int n)
float *c()
short d(long x)
int func();
func() int;
function int func();
declare int func();
Compile time error
Run time error
Logical error
No error
pair of parenthesis
semicolon
braces
colon
power of y to the x
power of x to the y
logarithm of x on the base y
Such function does not exist
Both break and return
A function can call itself
A function cannot call itself
Recursion is not supported in C
Recursion is the same as iteration