int arr[] = {1,2,3,4}
int *ptr=arr;
*(arr+3) = *++ptr + *ptr++;
Final contents of arr[]
Answer Posted / guest
{1,2,3,4}
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
Explain what are binary trees?
Do you have any idea about the use of "auto" keyword?
What are identifiers in c?
What type is sizeof?
Why main function is special give two reasons?
Define circular linked list.
Explain how do you view the path?
What is oops c?
How will you divide two numbers in a MACRO?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Is c procedural or object oriented?
How is = symbol different from == symbol in c programming?
Why do we use stdio h and conio h?
what is recursion in C