C Language Interview Questions and Answers for Freshers - 2

Question: 6

What is mean by debugging?

Debugging is the process of locating and isolating the errors.

Question: 7

What are all decisions control statements in C?

There are three types of decision making control statements in C language. They are,

if statements

if else statements

nested if statements

Question: 8

What is relocation?

Relocation means identifying the existing addresses of program code and data.

Question: 9

What is a compiler?

A compiler is a program that takes source code as its input, check the entire program instruction by instruction for its grammatical accuracy, and if the source code is grammatical accurate, then it translates the program again instruction by instruction to machine language and writes to the disk file.

Question: 10

Where auto local variables are stored?

These are stored in a stack. This stack is automatically maintained by the system.

Related Questions