How does normalization of huge pointer works?


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

Post New Answer

More C Interview Questions

who did come first hen or agg

15 Answers   Infosys,


What is the difference between realloc() and free()

1 Answers  


without using control structures and control structures find the max and min of given 2 nos

1 Answers   HCL,


#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,


How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  






what is the diff b/w static and non static variables in C. Give some examples plz.

3 Answers   Wipro,


sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?

2 Answers  


how to execute with out main in cprogram

15 Answers   Infosys,


What is the purpose of 'register' keyword?

0 Answers  


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

0 Answers  


where do we use structure pointer?

1 Answers  


What are the loops in c?

0 Answers  


Categories