can any one please explain, how can i access hard
disk(physical address)?
it is possible by the use of far,near or huge pointer?
if yes then please explain......


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

Post New Answer

More C Interview Questions

Program to find the sum of digits of a given number until the sum becomes a single digit

8 Answers   InterGraph,


Can you please explain the difference between exit() and _exit() function?

0 Answers  


What is operator precedence?

0 Answers  


how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0

4 Answers   Wipro,


what is the difference between NULL('\0') and 0?

14 Answers   Microsoft,






What are the different pointer models in c?

4 Answers  


Where in memory are my variables stored?

0 Answers  


Write a program to know whether the input number is an armstrong number.

0 Answers   Wipro,


Write a program in c to input a 5 digit number and print it in words.

11 Answers  


What type of function is main ()?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


Can one function call another?

0 Answers  


Categories