what is difference between ++(*p) and (*p)++
Answer Posted / s.aswini
++(*p)-->it is denoted by first increment the value andthen
check the condition.
(*p)++-->it is denoted by first do the operation and then
increment the value.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
i got 75% in all semester am i eligible for your company
How can I implement sets or arrays of bits?
What is an endless loop?
What is data types?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
How can I automatically locate a programs configuration files in the same directory as the executable?
What is getch?
What is New modifiers?
What are 3 types of structures?
why return type of main is not necessary in linux
Why is structure important for a child?
Can you write the algorithm for Queue?
What is a void * in c?
What is function what are the types of function?
Implement bit Array in C.