diff. between *p and **p

Answer Posted / sivavendra

yeah,,,its right,,,
*p is a ptr tat holds the address of another variable....where as **p is a double ptr which hold the address of another pointer and that pointer hold the address of the data....

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why void is used in c?

558


count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

672


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

1899


What is meant by operator precedence?

666


Is that possible to store 32768 in an int data type variable?

685






What is the description for syntax errors?

606


Describe the difference between = and == symbols in c programming?

769


can any one tel me wt is the question pattern for NIC exam

1551


How do we declare variables in c?

561


How are portions of a program disabled in demo versions?

739


What is wrong in this statement?

597


What’s the special use of UNIONS?

653


the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....

22180


Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

682


Explain 'bus error'?

549