How many bytes are occupied by near, far and huge pointers (dos)?
No Answer is Posted For this Question
Be the First to Post Answer
how to swap 4 number without using temporary number?
related proverb of "dont count your chicken before it hatches"
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
28 Answers 3D PLM, Code Studio, Deltech, IBM,
Why c is called object oriented language?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is file in c preprocessor?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
Explain how can you determine the size of an allocated portion of memory?
What is the difference between strcpy() and memcpy() function in c programming?
What are the concepts introduced in OOPs?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is pointer & why it is used?