Answer Posted / yathish m yadav
*++i
assuming i is declared as pointer
i will be first incremented to point to next location to
which it is pointing. then, the content of location to
which i is newly pointing will be assigned if any variable
is used like: a=*++i;
here since it is not assigned to any variable it will be
dicard.
i++*
if the statement is int a=i++*;
then i is incremented to point to next location of its type
then the content of that location is being copied to a
using *.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Do you have any idea how to compare array with pointer in c?
what are the 10 different models of writing an addition program in C language?
What is the use of typedef in c?
Do pointers need to be initialized?
What is an array? What the different types of arrays in c?
c program for searching a student details among 10 student details
What are the two types of structure?
What is a program flowchart and explain how does it help in writing a program?
What is the role of this pointer?
What is difference between scanf and gets?
Combinations of fibanocci prime series
What is a null string in c?
Did c have any year 2000 problems?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Explain what does the function toupper() do?