Question Detail

Which operator in c can't be overloaded

  • %
  • +
  • ::
  • -
Similar Questions :

1. Which is invalid name of identifier

  • world
  • addition23
  • test_name
  • factorial

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

i = (int) x;
print i;

  • null
  • error
  • 10
  • garbage value

3. 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

4. If (*p) and **p is same

  • No
  • Yes

5. What is the purpose of getc()

  • read a character from STDIN
  • read a character from a file
  • read all file
  • read file random
Read more from - C Programming Questions Answers - Chapter 1