What is C?
C is a structured procedural programming language.
Who developed C?
Dennis Ritchie
Where was C developed?
AT&T Bell Labs between 1969 and 1973.
Why C is called as middle language?
C combines the elements of high-level languages with the functionalism of assembly language.
What is a pointer?
Pointer is a variable which stores an address of another variable.
What is a structure?
Structure is a collection of items of different(dissimilar) data types.
What is an array?
It is a collection of items of similar data type.
What is an union?
Union is a collection of heterogeneous data type.
What is the difference between array and structure?
Array is a collection of similar data type, where as Structure is a collection of dissimilar data type.
What is a function?
Function is a set of instruction to perform a task which is smaller than the program.