C-Pointers Question and Answer

C-Pointers Question and Answer
61. The arguments in main ( ) function are known as
  • prgram parameters
  • command line arguments
  • both options a and b
  • memory in-line format conversion
Show Answer
62. The arguments argv { } is used to
  • count the number of command line arguments
  • pass strings to the programs including the excecution command
  • both options a and b
  • pass strings to the programs excluding the excecution command
Show Answer
63. The argc in main ( ) is used to
  • count the number of command line arguments
  • pass strings to the programs
  • both options a and b
  • count the number of lines in a program
Show Answer
64. In the declaration double (*pf) ();
  • pf is a pointer to a function
  • pf is a function returning pointer
  • pf is a pointer to array
  • pf is an array of pointers.
Show Answer
65. In the declaration double *f( );
  • f is a pointer to a function
  • fi is a function returning a pointer
  • f is an array of function
  • f is an pointer to array
Show Answer
66. Identify the invalid  assignment , for given int *p, x;
  • p = 0
  • p = 255864u;
  • p = &x;
  • *p = 10; /* assume valid pointer is already assigned to p*/
Show Answer
67. The operations that can be performed on pointers are
  • addition or subtraction of a pointer and an integer
  • assignment of pointer using pointer expression
  • assignment of the value 0 to a pointer
  • all the above
Show Answer
68. The invalid address arithmetic is (are 0
  • adding two pointers
  • multiplying two pointers
  • dividing two pointers
  • all the above
Show Answer
69. The invalid pointer arithmetic is (are )
  • shifting pointers using shift operators
  • addition of float or double values to printers
  • both options a and b
  • incrementing pointers
Show Answer
70. The declaration float (*f[5]) (); is
  • an array of pointers to a function returning float
  • pointer to an array
  • function returning pointer to array
  • pointer to a function returning an array of pointers to float
Show Answer
Questions and Answers for Competitive Exams Various Entrance Test