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 |
Explain what is the concatenation operator?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
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); }
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 ???
Why structure is used in c?
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
List the difference between a "copy constructor" and a "assignment operator"?
Where are local variables stored in c?
What's the difference between calloc() and malloc()?
Write a program with dynamically allocation of variable.
write a program that will read the temperature in Celsius and convert that into Fahrenheit.