Question Detail

If (*p) and **p is same

  • No
  • Yes
Similar Questions :

1. We can insert pre written code in a C program by using

  • #read
  • #get
  • #include
  • #put

2. Which of the following below is/are valid C keywords

  • integer
  • int
  • null
  • none of above

3. What will be the output of following program
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(\"%d\",x);
}

  • error
  • 0
  • 10
  • Garbage value

4. A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above

5. Out of following program :
float x = 10.7;
int i;

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value
Read more from - C Programming Questions Answers - Chapter 1