Answer Posted / guest
could any one help me out how this pointer to an array
organized in the memory?
Eg.,
int (*p) [3] = (int (*)[3])a;
Here *p == p, how?
Thanks in advance!
Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is typedef example?
What is unsigned int in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Explain how can a program be made to print the line number where an error occurs?
What are local static variables?
What is the difference between volatile and const volatile?
Why do we write return 0 in c?
What is difference between structure and union in c programming?
Is main an identifier in c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is wrong in this statement?
Explain the difference between call by value and call by reference in c language?
program for reversing a selected line word by word when multiple lines are given without using strrev
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }