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


Please Help Members By Posting Answers For Below Questions

What are qualifiers and modifiers c?

553


Is c is a middle level language?

600


What is equivalent to ++i+++j?

648


Explain what is the benefit of using const for declaring constants?

618


Difference between pass by reference and pass by value?

660






In C language, a variable name cannot contain?

747


How do you define structure?

571


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

839


What is string constants?

664


Is multithreading possible in c?

573


What language is c written?

580


Whats s or c mean?

597


How can I run c program?

692


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

4992


What is conio h in c?

631