Question Detail

What is the value of sizeof(char)

  • 1
  • 2
  • 4
  • 8
Similar Questions :

1. Which of the following functions below can be used Allocate space for array in memory

  • calloc()
  • malloc()
  • realloc()
  • All of above

2. What is polymorphism

  • Ability to take more than one form
  • Ability to destroy destructor
  • Ability to create constructor
  • None of above

3. How to define a destructor

  • X~() {}
  • X() {}~
  • X() ~{}
  • ~X() {}

4. Inline functions are invoked at

  • Run time
  • Compile time
  • Debug time
  • None of above

5. Default constructor has how many arguments

  • 1
  • 2
  • 3
  • 0
Read more from - C++ Programming Questions Answers - Chapter 1