int arr[] = {1,2,3,4}
int *ptr=arr;
*(arr+3) = *++ptr + *ptr++;
Final contents of arr[]
Answer Posted / vignesh1988i
1 2 3 5
| Is This Answer Correct ? | 2 Yes | 10 No |
Post New Answer View All Answers
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Not all reserved words are written in lowercase. TRUE or FALSE?
What is c programing language?
What are the characteristics of arrays in c?
Who invented b language?
Can a pointer point to null?
What is static identifier?
What are the disadvantages of c language?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Explain what are bus errors, memory faults, and core dumps?
What is union and structure in c?
How do I read the arrow keys? What about function keys?
What is huge pointer in c?
how to solve "unable to open stdio.h and conio.h header files in windows 7 by using Dos-box software
Linked lists -- can you tell me how to check whether a linked list is circular?