int x=sizeof(!5.856);
What will value of variable x?
Answers were Sorted based on User's Feedback
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"); }
Tell me what is the purpose of 'register' keyword in c language?
Can we change the value of static variable in c?
What are runtime error?
How do we open a binary file in Read/Write mode in C?
main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }
What is the difference between union and anonymous union?
What is the explanation for the dangling pointer in c?
please send me the code for multiplying sparse matrix using c
how would a 4*3 array A[4][3] stored in Row Major Order?
What is a C array and illustrate the how is it different from a list.
Why array is used in c?