what is difference between ++(*p) and (*p)++
Answer Posted / vicky
++(*p)means first incrementing and then performing the
operation;
(*p)++ means first performing the operation and then
incrementing.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
What does %d do?
What are reserved words with a programming language?
write a program fibonacci series and palindrome program in c
What is the purpose of realloc()?
What is fflush() function?
Why is c not oop?
What are the header files used in c language?
What is #ifdef ? What is its application?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Why array is used in c?
What oops means?
Why are algorithms important in c program?
In c programming language, how many parameters can be passed to a function ?
How can I determine whether a machines byte order is big-endian or little-endian?