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
What is #define in c?
What is declaration and definition in c?
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Write the control statements in C language
What is the use of void pointer and null pointer in c language?
Differentiate between a structure and a union.
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
Program to write some contents into a file using file operations with proper error messages.
What is header file definition?
what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }