C Programming and Technical

output?
Q. What is a structure?

A. Structure is a collection of heterogeneous (i.e. related data items which can be of different types) held together to a single unit. The data items enclosed within a structure are called its members which may be of data type int, float, char, array etc.

Read Solution (Total 0)

C Other Question

output?
Q. What are library Functions?

A. Library Functions are predefined functions and stored in .lib files.
output?
Q. What is a pointer?

A. Pointer is a variable that contains address of another variable in the memory. Pointers are quite useful in creation of linked data structures (such as linked lst, trees graphs), managing object allocated memory dynamically, optimize the program to execute faster and use less memory.