What is the purpose of realloc()?


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

Post New Answer

More C Interview Questions

main() { int a[10]; printf("%d",*a+1-*a+3); }

2 Answers  


What are integer variable, floating-point variable and character variable?

0 Answers  


What is %s and %d in c?

0 Answers  


Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.

3 Answers   Google,


regarding pointers concept

0 Answers  






What is a buffer in c?

0 Answers  


Explain what is the difference between functions getch() and getche()?

0 Answers  


What is meant by gets in c?

0 Answers  


what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values

0 Answers   College School Exams Tests,


Is there a built-in function in C that can be used for sorting data?

0 Answers  


What is methods in c?

0 Answers  


int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?

4 Answers   TCS,


Categories