Why double pointer is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What does %d do?
What is the use of getchar functions?
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"); }
two variables are added answer is stored on not for third variable how it is possible?
What does malloc () calloc () realloc () free () do?
here is a link to download Let_Us_C_-_Yashwant_Kanetkar
simple program for virtual function?
How can I allocate arrays or structures bigger than 64K?
In c language can we compile a program without main() function?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is meaning of "Void main" in C Language.
24 Answers Ford, GU, HCL, IBIBS, JUW, TCS,
Explain how can a program be made to print the line number where an error occurs?