What is meant by realloc()?
No Answer is Posted For this Question
Be the First to Post Answer
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Which weighs more, a gram of feathers or a gram of gold?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
What is define directive?
How are 16- and 32-bit numbers stored?
What are the advantages and disadvantages of a heap?
What are void pointers in c?
what is the structure?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is pointer to pointer in c with example?