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


Please Help Members By Posting Answers For Below Questions

main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

840


Explain what are the different file extensions involved when programming in c?

828


What are different types of operators?

764


why programs in c are running with out #include? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }

1507


Is array name a pointer?

797


How is null defined in c?

850


Why is it usually a bad idea to use gets()? Suggest a workaround.

1327


What is atoi and atof in c?

794


What are the features of c language?

808


What is c definition?

947


Differentiate call by value and call by reference?

740


Write a code on reverse string and its complexity.

765


What is a keyword?

934


What is assert and when would I use it?

755


hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...

1678