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
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Differentiate between null and void pointers.
Explain output of printf("Hello World"-'A'+'B'); ?
Difference between strcpy() and memcpy() function?
What is malloc return c?
What is indirection in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
In c programming language, how many parameters can be passed to a function ?
What are the types of pointers?
What are header files in c programming?
What is c token?
What are Macros? What are its advantages and disadvantages?
What is the full form of getch?
What are qualifiers?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.