ILU

  Home  Computer Programming  ILU


“ILU Frequently Asked Questions in various ILU Interviews asked by the interviewer. So learn ILU with the help of this ILU Interview questions and answers guide and feel free to comment as your suggestions, questions and answers on any ILU Interview Question or answer by the comment feature available on the page.”



11 ILU Questions And Answers

2⟩ What are the differences between malloc() and calloc()? What are macros? what are its advantages and disadvantages?

Both malloc and calloc are used for allocating memory dynamically.But the difference is,in malloc elements are not initialised and hence holding garbage values where as in calloc the elements are get initialised.

Macros are used for speed up the process.The disadvantage is they are not having type_check phenomenon.

 301 views

3⟩ What is ILU?

One full form of ILU is Inter-Language Unification system.

 227 views

5⟩ Explain LPCTSTR? What does LP denote it?

LPCTSTR denotes "Long Pointer Const to String". Declaration can be written as const long* str[];LP denotes Long Pointer.

LPCTSTR = Long Pointer to a Const TCHAR String

LPCTSTR = const char* or const wchar_t* depending on _UNICODE

LP - LONG POINTER

 213 views

6⟩ Explain a dangling pointer?

Those pointers which pointing to a memory block which is no more exist in the memory. for example Suppose two pointers are pointing to the same memory location and memory is freed using firstpointer variable but second pointer is still pointing to the same memory location. the second pointer is a dangling pointer.

 209 views

8⟩ Explain How to convert decimal to binary and its formula?

Its very simple ,just divide the decimal number by 2 and note down the remainder(which will be either 1 or 0) ,then again divide the quotient obtained in the first step and note down the remainder..........repeat the step till u get 0 as quotient n write the remainders in reverse order that means the last step remainder will b e the leftmost digit of the binary equivalent of given decimal number.

 201 views