what is difference between ++(*p) and (*p)++
Answer Posted / kalai
++(*p)-->pre-increment.
(*p)++-->post-increment.
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
Are bit fields portable?
Do pointers take up memory?
what is the format specifier for printing a pointer value?
Is main a keyword in c?
What header files do I need in order to define the standard library functions I use?
What is storage class?
What is getch?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Write a program to reverse a linked list in c.
show how link list can be used to repersent the following polynomial i) 5x+2
what are the 10 different models of writing an addition program in C language?
What is an expression?
What is the difference between array_name and &array_name?
Write a programme using structure that create a record of students. The user allow to add a record and delete a record and also show the records in ascending order.
How can I open a file so that other programs can update it at the same time?