When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?


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

Post New Answer

More C Interview Questions

Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }

1 Answers  


what are the facialities provided by you after the selection of the student.

0 Answers   TCS,


what is the defrenece between structure and union

5 Answers   Aloha Technology,


What does the message "automatic aggregate intialization is an ansi feature" mean?

0 Answers  


write the program for prime numbers?

73 Answers   Accenture, Aptech, Infosys, TCS,






Can you explain the four storage classes in C?

0 Answers   TCS,


Write a program to find minimum between three no.s whithout using comparison operator.

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


here is a link to download Let_Us_C_-_Yashwant_Kanetkar

3 Answers   Microsoft,


Is c procedural or object oriented?

0 Answers  


How can I make it pause before closing the program output window?

0 Answers  


write a c prog for removing duplicate character from an array and sorting remaining elements using a single array

1 Answers  


Categories