what is difference between ++(*p) and (*p)++
Answer Posted / arasu
++(*p)-->after the value is incremented, next line is
executed.
(*p)++-->after execution,it is incremented.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is use of null pointer in c?
What is the use of bit field?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Why isnt there a numbered, multi-level break statement to break out
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
to find the closest pair
Define circular linked list.
How can I read data from data files with particular formats?
What is action and transformation in spark?
What does volatile do?
code for find determinent of amatrix
By using C language input a date into it and if it is right?
Why is it usually a bad idea to use gets()? Suggest a workaround.
Here is a good puzzle: how do you write a program which produces its own source code as output?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop