int arr[] = {1,2,3,4}
int *ptr=arr;
*(arr+3) = *++ptr + *ptr++;
Final contents of arr[]
Answer Posted / sachin
1 2 3 3
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
What is data types?
What are actual arguments?
How can you invoke another program from within a C program?
In C language, a variable name cannot contain?
What is the purpose of type declarations?
What is function what are the types of function?
What is volatile variable in c?
Discuss the function of conditional operator, size of operator and comma operator with examples.
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is difference between array and pointer in c?
Why #include is used in c language?
What is huge pointer in c?
Tell me what is null pointer in c?
What is the use of a ‘ ’ character?
Why array is used in c?