what is associativity explain
what is the precidence for * and & , * and ++
how the folloing declaration work
1) *&p;
2) *p++;
No Answer is Posted For this Question
Be the First to Post Answer
Can I initialize unions?
Do pointers store the address of value or the actual value of a variable?
what is call by value and call by reference
Explain demand paging.
What is #error and use of it?
Is c a great language, or what?
Can we use visual studio for c?
What is the difference between mpi and openmp?
What is the meaning of c in c language?
Famous puzzles which are generally asked by companies during interviews ?
Why is it usually a bad idea to use gets()? Suggest a workaround.
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }