What is auto ?
Storage class specifier
local variable
key word
All these
In which header file the function clrscr ( ) in included?
iomanip.h
conio.h
stdio.h
iostream.h
What helps reduce the program size and avoid ambiguity .
Program
Class
Function
Prototype
How many values can be returned by a functions
Many
Two
One
None
The concept in which the same name gives different meanings in different context(with different parameters) is called
Recursive
Function loop
Function execution
Overloading
Function definition void check (int i,char*j) is
Call by value
Call by reference
Both a and b
Invalid function
The address of the actual arguments which is used to pass to a function is called
Function call
Return
Suggest the storage class from the following for "a variable that should retain its value after the function call is over ".
static
auto
register
extern
Suggest the suitable storage class for the variable,"a variable that spans multiple files "
A function that cells itself directly or indirectly is reffered to as
Recursive function
Function definition