Answer Posted / vignesh1988i
i++* wont work .... as for as i know.... it's meaningless
comin to *++i, i is a pointer holding an address so here ++
and * holds the same priority so we ll go for associativity
of these operators. it's RIGHT to LEFT.
so , address in 'i' will get incremented and then if that
address points to some value means it will print that value
or else it will have garbage value
thank u
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is meant by gets in c?
When should a far pointer be used?
how should functions be apportioned among source files?
Is it possible to have a function as a parameter in another function?
what is different between auto and local static? why should we use local static?
How do you override a defined macro?
What is class and object in c?
What is a built-in function in C?
What is array in C
How can you restore a redirected standard stream?
What are the two forms of #include directive?
When c language was developed?
write a program to generate address labels using structures?
how to execute a program using if else condition and the output should enter number and the number is odd only...
Is c procedural or functional?