int far *near * p; means
Answer / Dharmendra Singh Shishodia
In C programming, int far and near are keywords related to function declarations. Far was used in older versions of the language for inter-module communication (across memory segments). Nowadays it's usually replaced by extern. The terms near and far are not commonly used in modern C programming.
| Is This Answer Correct ? | 0 Yes | 0 No |
if array a conatins 'n' elements and array b conatins 'n-1' elements.array b has all element which are present in array a but one element is missing in array b. find that element.
18 Answers Parexel, Ram Infotech, Zycus Infotech,
Explain how are 16- and 32-bit numbers stored?
What are pointers in C?
Can I pass constant values to functions which accept structure arguments?
program to print circle structure
What is the difference between int main and void main in c?
number of times a digit is present in a number
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
What is the advantage of an array over individual variables?
Where we use clrscr in c?
Is null equal to 0 in sql?
Why do we need functions in c?