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
How do I convert a string to all upper or lower case?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
How many levels of pointers can you have?
What is difference between constant pointer and constant variable?
What is NULL pointer?
What are nested functions in c?
Is fortran still used today?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
What is sizeof return in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is an array? What the different types of arrays in c?
What is difference between far and near pointers?
Can we declare function inside main?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.