Answer Posted / rohit
suppose
if
p=5,
np=5
or
np=6
!=(it is the sign of not equal to)
so
if np and p are same the answer is false
and when the np and p are different the the answer is true
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What does *p++ do? What does it point to?
What are volatile variables in c?
When can a far pointer be used?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
What is a ternary operator in c?
What is function what are the types of function?
What is the difference between array_name and &array_name?
How can I discover how many arguments a function was actually called with?
Difference between constant pointer and pointer to a constant.
Without Computer networks, Computers will be half the use. Comment.
What is the significance of c program algorithms?
Explain what are the standard predefined macros?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is static and auto variables in c?
Which header file is essential for using strcmp function?