Write a c program to build a heap method using Pointer to
function and pointer to structure ?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by int main ()?
What is a dynamic array in c?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
What is the mean of function?
Why is C language being considered a middle level language?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
What does %c do in c?
What is the memory allocated by the following definition ? int (*x)[10];
What is function definition in c?
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;
What is the difference between GETS();AND SCANF();
Why c language is called c?