C Programming and Technical

Q. What is modular programming?

A. If a program is large, it is subdivided into a number of smaller
programs that are called modules or subprograms. If a complex
problem is solved using more modules, this approach is known as
modular programming

Read Solution (Total 0)

C Other Question

Q. How are pointer variables initialized?

A. Pointer variable are initialized by one of the following two ways
- Static memory allocation
- Dynamic memory allocation
Q. Where does global, static, local, register variables and C Program instructions get stored?

A. Global , static, local : In main memory
Register variable: In registers
C program : In main memory.