a direct address that identifies a location by means of its displacement from a base address or segment

a) absolute address

b) relative address

c) relative mode

d) absolute mode


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what is difference between ++(*p) and (*p)++

17 Answers   Accenture, HCL, IBM,


Using which language Test cases are added in .ptu file of RTRT unit testing???

0 Answers  


Can I initialize unions?

0 Answers  


#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?

2 Answers  


Why is c platform dependent?

0 Answers  






How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

0 Answers  


why Language C is plateform dependent

3 Answers   Siemens, Wipro,


why ordinary variable store the later value not the initial

1 Answers  


what is differnence b/w macro & functions

1 Answers  


Sir i need notes for structure,functions,pointers in c language can you help me please

0 Answers   TCS,


i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }

2 Answers  


Why do u use # before include in a C Progam?

9 Answers   IBM,


Categories