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
how is the examination pattern?
What is sorting in c plus plus?
write a program to remove duplicate from an ordered char array? in c
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is quick sort in c?
What is pivot in c?
what is the output of below int n=10; (n++)++; printf("%d",n);
When can a far pointer be used?
explain memory layout of a C program
What is the use of static variable in c?
What is merge sort in c?