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
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can you convert integers to binary or hexadecimal?
Why is #define used?
Is c a great language, or what?
How important is structure in life?
What is the difference between volatile and const volatile?
Give the rules for variable declaration?
How to compare array with pointer in c?
Function calling procedures? and their differences? Why should one go for Call by Reference?
What are the advantages of union?
What is the usage of the pointer in c?
When is a void pointer used?
What is the use of bitwise operator?