switch
goto
go back
return
int a(char *s)
void b(int a[], int n)
float *c()
short d(long x)
Stdio.h
Conio.h
Math.h
Header.h
Value of elements in array
First element of the array
Base address of the array
Address of the last element of array
Call by reference
Call by value
Call by reference by passing base address to a function
Both A and C
static
new
volatile
int
float
double
depends on the data type of the parameter
break
exit
Both break and return
Array
Linked list
Binary tree
Stack
Compile time error
Run time error
Logical error
No error
Monitor
Function
Program
Structure
Circular definition
Complex definition
Procedure
Union
pair of parenthesis
semicolon
braces
colon
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
continue
int func();
func() int;
function int func();
declare int func();
A function can call itself
A function cannot call itself
Recursion is not supported in C
Recursion is the same as iteration
typedef int Boolean;
typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays;
struct {char name[10], int age};
all of the mentioned
struct