download Mastguru Android App

Question Detail

What is wild pointer in c

  • a pointer which we need to write in future
  • a pointer which has bad naming convention
  • a pointer which has no limit
  • a point which has not initialized
Similar Questions :

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

  • S
  • Error
  • Garbage value
  • None of above

2. To access the members of structure which symbol is used

  • *
  • -
  • ,
  • .

3. What is the purpose of getc()

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

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

5. What among following is true about stack

  • stack cannot reuse its memory
  • all elements are of different datatypes
  • all operation done at one end
  • none of above
Read more from - C Programming Questions Answers - Chapter 1
Post a comment