what is difference between ++(*p) and (*p)++
Answer Posted / vicky
++(*p)means first incrementing and then performing the
operation;
(*p)++ means first performing the operation and then
incrementing.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What are the 4 types of unions?
What is a program flowchart and explain how does it help in writing a program?
Did c have any year 2000 problems?
What are the primitive data types in c?
Can a file other than a .h file be included with #include?
What is the difference between c &c++?
What are the advantages of using Unions?
What would be an example of a structure analogous to structure c?
What is the difference between array_name and &array_name?
Explain what is wrong in this statement?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Which is best book for data structures in c?
What is 1f in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
explain what is fifo?