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
Write a program to check palindrome number in c programming?
What is the exact difference between '\0' and ""
Difference between null pointer and dangling pointer?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the relation between # and include<stdio.h>
Write a c program to build a heap method using Pointer to function and pointer to structure ?
0 Answers MAHINDRA, Protech, Sivan Tech,
program for reversing a selected line word by word when multiple lines are given without using strrev
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What is a lvalue
what is the output of the below code? main( ) { printf ( "\nOnly stupids use C?" ) ; display( ) ; } display( ) { printf ( "\nFools too use C!" ) ; main( ) ; }
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?