Question Detail

The compiler in C ignores all text till the end of line using

  • //
  • /
  • */
  • none of above
Similar Questions :

1. What is the purpose of getc()

  • read a character from STDIN
  • read a character from a file
  • read all file
  • read file random

2. Which is invalid name of identifier

  • world
  • addition23
  • test_name
  • factorial

3. What is use of \r in c

  • used to insert a vertical tab
  • used to insert a tab
  • places cursor at the end of line
  • places cursor at the start of line

4. What is prototype of a function in C

  • It is the return type of a function
  • It is the return data of the function
  • It is declaration of a function
  • It is a datatype

5. Continue statement used for

  • To continue to the next line of code
  • To stop the current iteration and begin the next iteration from the beginning
  • To handle run time error
  • None of above
Read more from - C Programming Questions Answers - Chapter 1