what is meant by the "equivalence of pointers and arrays" in
C?
Answer Posted / shruti
An array is a constant pointer.
a[10] is equivalent to *a..
it is known as base pointer..
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
how to create duplicate link list using C???
How many keywords (reserve words) are in c?
Do you know pointer in c?
What is double pointer in c?
Why clrscr is used in c?
What is the value of h?
Is c compiled or interpreted?
hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?
What is data structure in c programming?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Tell us bitwise shift operators?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
What is the auto keyword good for?
How to delete a node from linked list w/o using collectons?
What is equivalent to ++i+++j?