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

Can a program have two main functions?

0 Answers  


implement NAND gate logic in C code without using any bitwise operatior.

4 Answers   Alcatel,


Explain setjmp()?

0 Answers  


Explain the process of converting a Tree into a Binary Tree.

0 Answers   Ignou,


How do I send escape sequences to control a terminal or other device?

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  


What is an lvalue in c?

0 Answers  


write an algorithm and a program to count the number of elements in a circularly singly linked list

1 Answers   Ignou,


program to print circle structure

1 Answers  


. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none

9 Answers   Oracle,


write a program to insert an element at the specified position in the given array in c language

5 Answers   Appin, IBM,


Write a C program where input is: "My name is xyz". output is: "xyz is name My".

1 Answers   TCS,


Categories