Explain the difference between malloc() and calloc() in c?
No Answer is Posted For this Question
Be the First to Post Answer
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is sparse file?
disadvantages of realloc ?
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}
explain what are pointers?
what is the self-referential structure?
what is the difference between getch() and getche()?
How do I access command-line arguments?
prototype of sine function.
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
Why is the code below functioning. According to me it MUST NOT.
How to define structures? ·