Answer Posted / gopesh dubey
Because the name of array is a pointer
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Explain pointers in c programming?
How can I insert or delete a line (or record) in the middle of a file?
What is structure data type in c?
Why & is used in scanf in c?
What is wild pointer in c with example?
What is the difference between far and near in c?
What is the meaning of && in c?
What is storage class?
Write a program to find the biggest number of three numbers in c?
What are the two types of structure?
#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); }
What is the difference between strcpy() and memcpy() function in c programming?
Explain how can a program be made to print the name of a source file where an error occurs?
What is wrong with this program statement?