what is difference between ++(*p) and (*p)++
Answer Posted / amaresh chandra das
++(*p)-> Here ,increments the address of p
(*p)++ -> Here , Increments the Value of p
| Is This Answer Correct ? | 5 Yes | 9 No |
Post New Answer View All Answers
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
write a program for the normal snake games find in most of the mobiles.
Can we declare a function inside a function in c?
Is c weakly typed?
What is pointer & why it is used?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Is c still used?
What is structure padding in c?
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
What are the disadvantages of external storage class?
How are structure passing and returning implemented?
Difference between linking and loading?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Who invented b language?