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
Explain how do you determine a file’s attributes?
Explain what is the concatenation operator?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Can stdout be forced to print somewhere other than the screen?
Why does this code crash?
In C language what is a 'dangling pointer'?
Differentiate between static and dynamic modeling.
what is the height of tree if leaf node is at level 3. please explain
What are variables c?
Explain what are global variables and explain how do you declare them?
Explain how can I manipulate strings of multibyte characters?
Differentiate between Macro and ordinary definition.
What is meant by errors and debugging?
What is the difference between c and python?
Why do we use int main instead of void main in c?