what is difference between ++(*p) and (*p)++
Answer Posted / s.aswini
++(*p)-->it is denoted by first increment the value andthen
check the condition.
(*p)++-->it is denoted by first do the operation and then
increment the value.
| Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
What is an array in c?
Can a program have two main functions?
What is function prototype?
What is the difference between NULL and NUL?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Why do we need volatile in c?
What is the purpose of scanf() and printf() functions?
What is a program?
Explain built-in function?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
C language questions for civil engineering
What is difference between main and void main?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.