download Mastguru Android App

Question Detail

Which of the following below is/are valid C keywords

  • integer
  • int
  • null
  • none of above
Similar Questions :

1. Wild pointer in C

  • if pointer is pointing to a memory location from where variable has been deleted
  • if pointer has not been initialized
  • if pointer has not defined properly
  • if pointer pointing to more than one variable

2. What will be output of
#include
void main()
{
char test =`S`;
printf("\n%c",test);
}

  • S
  • Error
  • Garbage value
  • None of above

3. Which operator has the highest priority

  • ()
  • []
  • *
  • /

4. Adding to a pointer that points to an array will

  • Cause an error
  • Increase the value of the element that the pointer is pointing to
  • Cause the pointer to point to the next element in the array
  • None of above

5. A member is a

  • Variable in a structure
  • Datatype of structure
  • Structure pointer
  • None of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment