Saturday, July 28, 2018

C Questions And Answers – 2018B4

There are many commonly asked questions regarding C programming language. Below are some collected such question-answer examples. The questions are usually related with 32-bit system, Turbo C IDE in windows or GCC under Linux environment [not always].

For more such examples, click C_Q&A label.

-------------------------------------------------------------------------------------------------

 

When does the compiler not implicitly generate the address of the first element of an array?

 

Whenever an array name appears in an expression such as

- array as an operand of the sizeof operator

- array as an operand of & operator

- array as a string literal initializer for a character array

 

Then the compiler does not implicitly generate the address of the address of the first element of an array.

 

-------------------------------------------------------------------------------------------------

 

What is a null pointer?

 

There are times when it’s necessary to have a pointer that doesn’t point to anything. The macro NULL, defined in, has a value that’s guaranteed to be different from any valid pointer. NULL is a literal zero, possibly cast to void* or char*. Some people, notably C++

programmers, prefer to use 0 rather than NULL.

 

The null pointer is used in three ways:

1) To stop indirection in a recursive data structure

2) As an error value

3) As a sentinel value

 

-------------------------------------------------------------------------------------------------

 

What is the difference between text and binary modes?

 

Streams can be classified into two types: text streams and binary streams. Text streams are interpreted, with a maximum length of 255 characters. With text streams, carriage return/line feed combinations are translated to the newline n character and vice versa. Binary streams are uninterrupted and are treated one byte at a time with no translation of characters. Typically, a text stream would be used for reading and writing standard text files, printing output to the screen or printer, or receiving input from the keyboard.

 

A binary text stream would typically be used for reading and writing binary files such as graphics or word processing documents, reading mouse input, or reading and writing to the modem.

 

-------------------------------------------------------------------------------------------------

 

What is static memory allocation and dynamic memory allocation?

 

Static memory allocation: The compiler allocates the required memory space for a declared variable. By using the address of operator, the reserved address is obtained and this address may be assigned to a pointer variable. Since most of the declared variable have static memory, this way of assigning pointer value to a pointer variable is known as static memory allocation. memory is assigned during compilation time.

 

Dynamic memory allocation: It uses functions such as malloc( ) or calloc( ) to get memory dynamically. If these functions are used to get memory dynamically and the values returned by these functions are assigned to pointer variables, such assignments are known as dynamic memory allocation. memory is assigned during run time.

 

-------------------------------------------------------------------------------------------------

 

When should a far pointer be used?

 

Sometimes you can get away with using a small memory model in most of a given program. There might be just a few things that don’t fit in your small data and code segments. When that happens, you can use explicit far pointers and function declarations to get at the rest of memory. A far function can be outside the 64KB segment most functions are shoehorned into for a small-code model. (Often, libraries are declared explicitly far, so they’ll work no matter what code model the program uses.) A far pointer can refer to information outside the 64KB data segment. Typically, such pointers are used with farmalloc() and such, to manage a heap separate from where all the rest of the data lives. If you use a small-data, large-code model, you should explicitly make your function pointers far.

 

-------------------------------------------------------------------------------------------------

 

How are pointer variables initialized?

 

Pointer variable are initialized by one of the following two ways

- Static memory allocation

- Dynamic memory allocation

 

-------------------------------------------------------------------------------------------------

 

Difference between arrays and pointers?

 

- Pointers are used to manipulate data using the address. Pointers use * operator to access the data pointed to by them

- Arrays use subscripted variables to access and manipulate data.

Array variables can be equivalently written using pointer expression.

 

-------------------------------------------------------------------------------------------------

 

Is using exit() the same as using return?

 

No. The exit() function is used to exit your program and return control to the operating system. The return statement is used to return from a function and return control to the calling function. If you issue a return from the main() function, you are essentially returning control to the calling function, which is the operating system. In this case, the return statement and exit() function are similar.

 

-------------------------------------------------------------------------------------------------

 

What is a method?

 

Method is a way of doing something, especially a systematic way; implies an orderly logical arrangement (usually in steps).

 

-------------------------------------------------------------------------------------------------

 

What is indirection?

 

If you declare a variable, its name is a direct reference to its value. If you have a pointer to a variable or any other object in memory, you have an indirect reference to its value.

 

-------------------------------------------------------------------------------------------------

 

…till next post, bye-bye & take care.

No comments:

Post a Comment