what is difference between ++(*p) and (*p)++
Answer Posted / srinivas
++(*p)as this means the first the addres is increneted and
then address is assgined
*p++ as this mean that the address is assign to it then the
address is incremented
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the right way to use errno?
What are the complete rules for header file searching?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Are pointers really faster than arrays?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Explain what is the benefit of using an enum rather than a #define constant?
what do the 'c' and 'v' in argc and argv stand for?
What are Macros? What are its advantages and disadvantages?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
How to get string length of given string in c?
what is bit rate & baud rate? plz give wave forms
What is equivalent to ++i+++j?
Explain the process of converting a Tree into a Binary Tree.
What is actual argument?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.