int arr[] = {1,2,3,4}
int *ptr=arr;
*(arr+3) = *++ptr + *ptr++;
Final contents of arr[]
Answer Posted / vijaisankar
In this statement
first ptr holds base address of the array(4000),
then as per precedence operators ptr gets post incremented
(4002)though it points the value 1(4000)(ptr is post
incremented) and then ptr gets preincrement so (4004) the
value in that one is 3 then 3+1=4.
*(arr+3)=3;
Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Explain what are the different file extensions involved when programming in c?
What are different types of operators?
why programs in c are running with out #include
Is array name a pointer?
How is null defined in c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
What is atoi and atof in c?
What are the features of c language?
What is c definition?
Differentiate call by value and call by reference?
Write a code on reverse string and its complexity.
What is a keyword?
What is assert and when would I use it?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...