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
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
how can use subset in c program and give more example
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What are qualifiers in c?
What are the different types of endless loops?
How to set file pointer to beginning c?
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is 'bus error'?
Why do we use int main?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Define and explain about ! Operator?
What is a protocol in c?
Write a program to print numbers from 1 to 100 without using loop in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?