Explain what are the advantages and disadvantages of a heap?
No Answer is Posted For this Question
Be the First to Post Answer
How to convert decimal to binary in C using recursion??
Explain how do you use a pointer to a function?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write a program for Overriding.
Why is a semicolon (;) put at the end of every program statement?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
how to get the starting address of file stored in harddisk through 'C'program.
sum of two integers values only other then integer it should print invalid input.
Why void main is used in c?
In a header file whether functions are declared or defined?
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?