Question Detail

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

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

1. total number of keywords in C are

  • 30
  • 32
  • 48
  • 132

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

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

  • S
  • Error
  • Garbage value
  • None of above

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

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

  • #read
  • #get
  • #include
  • #put
Read more from - C Programming Questions Answers - Chapter 1