What is calloc() function?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages and disadvantages of pointers?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
who is the father of c
What are disadvantages of C language.
Can the “if” function be used in comparing strings?
What are the uses of pre-processor directives?
What is the stack in c?
how to swap four numbers without using fifth variable?
Explain what a Binary Search Tree is.
Why void is used in c?
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
Can you write the function prototype, definition and mention the other requirements.