What is calloc()?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c program to build a heap method using Pointer to function and pointer to structure ?
What is malloc calloc and realloc in c?
What is the scope of local variable in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
Why double pointer is used in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Program to find the absolute value of given integer using Conditional Operators
What is an arrays?
What is the difference between getch() and getche()?
HOW TO HANDLE EXCEPTIONS IN C
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
Explain spaghetti programming?