what is difference between ++(*p) and (*p)++
Answer Posted / sonal
++(*p) it will increase pointer value to one value
(*p)++ will refer to next memory location
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
How is a macro different from a function?
Explain what are the different file extensions involved when programming in c?
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
What is the difference between if else and switchstatement
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.....
What is use of integral promotions in c?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
what are bit fields in c?
What is the advantage of c?
How do I use void main?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is #include called?
How are structure passing and returning implemented?
What is a pointer variable in c language?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)