What is a far pointer?What is the utility?
Answers were Sorted based on User's Feedback
Answer / chaitanya
pointers are two types.near and far.
if code we are writing is so large and there is necessity
to refer an address in other memory segment we have to use
far pointer.within in the range of 64Kb we can use new
pointer
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / mani
far pointers are of 32 bits.so within the range of 64Kb we
can use this pointer
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / bharat chandra
pointer is dynamic memory allocaton and memory space are
reduce.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rani
utility is an software tool like as we have make utilities in gcc
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what are multidimensional arrays?
C program to find all possible outcomes of a dice?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?
9 Answers Hughes, Tech Mahindra,
Write a program to find factorial of a number using recursive function.
Explain 'bus error'?
i want to know aptitude questions,technical questions
string reverse using recursion
Can anyone help me with this please? Need to print the below values.. Thanks 1 1 2 1 2 3 1 2 3 4
Is it better to bitshift a value than to multiply by 2?