Answer Posted / ravi
i++* is meaningless , do u want to ask *++i and *i++ diff ?
*++i --> it increments the i then access the value poiting
by i
*i++ --> it first access the value pointed by i , then
increment the i ( increments pointer , not value)
| Is This Answer Correct ? | 21 Yes | 2 No |
Post New Answer View All Answers
Mention four important string handling functions in c languages .
What is bubble sort technique in c?
Why do we use stdio h and conio h?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What happens if a header file is included twice?
How do you write a program which produces its own source code as output?
What is strcpy() function?
Explain heap and queue.
What is the best way to store flag values in a program?
What are the advantages of c preprocessor?
Is int a keyword in c?
what are the advantages of a macro over a function?
Where static variables are stored in c?
what is use of malloc and calloc?
Why do we use & in c?