Which storage class specifier can do the linking between the global variable in two or more files.
Auto
Extern
Static
None of these
The address of the actual arguments which is used to pass to a function is called
Call by reference
Call by value
Function call
Return
All the function prototypes are terminated with ___________
underscore
semicolon
colon
dot
How many values can be returned by a functions
Many
Two
One
None
What would be the output of the function ?
# include < iostream.n>
first (int,int);
second (int);
void main ( ) {
int x=10 , y=5, z;
z=first (x,y);
cout<<"\nz="< first (int x,int y) { return (x+second (y)); } second (int y) { return (++y); }
first (int x,int y) {
return (x+second (y)); }
second (int y) {
return (++y); }
10
15
16
17
In which header file the function clrscr ( ) in included?
iomanip.h
conio.h
stdio.h
iostream.h
Function definition void check (int i,char*j) is
Both a and b
Invalid function
A function that cells itself directly or indirectly is reffered to as
Recursive function
Function definition
Prototype
Pick the correct storage class for " a variable global in one file and not available in another file "
register
global
static global
static
The declaration of a function in the calling program is known as
prototype
definition
function call
return