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
Why & is used in c?
How do you list files in a directory?
Tell us something about keyword 'auto'.
What is s in c?
largest Of three Number using without if condition?
How many bytes are occupied by near, far and huge pointers (dos)?
Explain how can you check to see whether a symbol is defined?
Can a file other than a .h file be included with #include?
What is the code in while loop that returns the output of given code?
What is C language ?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
Write a code to remove duplicates in a string.
What is difference between structure and union in c programming?
How can I handle floating-point exceptions gracefully?
What is pre-emptive data structure and explain it with example?