How does normalization of huge pointer works?



How does normalization of huge pointer works?..

Answer / Sandip Kumar

Normalization of a large pointer value in C refers to adjusting the pointer so that it points to the start of an array or structure. However, there's no built-in normalization function in C. Instead, you would typically subtract the base address of the array or structure from the pointer.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Explain what is the concatenation operator?

1 Answers  


WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1 Answers   IBM,


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


x=2,y=6,z=6 x=y==z; printf(%d",x)

13 Answers   Bharat, Cisco, HCL, TCS,


what is a function pointer and how all to declare ,define and implement it ???

4 Answers   Honeywell,


Why structure is used in c?

1 Answers  


What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these

2 Answers   Oracle,


List the difference between a "copy constructor" and a "assignment operator"?

1 Answers   Accenture,


Where are local variables stored in c?

1 Answers  


What's the difference between calloc() and malloc()?

4 Answers  


Write a program with dynamically allocation of variable.

1 Answers   Atos, Atos Origin,


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  


Categories