250+ TOP MCQs on Functions Returning Non-integers and Answers

C helps anyone preparing for Cisco and other companies C interviews. One should practice these Objective Questions and answers continuously for 2-3 months to clear Cisco interviews on C Programming language.

Here is a listing of C language Objective Questions on “Functions Returning Non-integers” along with answers, explanations and/or solutions:

1. What is the return-type of the function sqrt()?
a) int
b) float
c) double
d) depends on the data type of the parameter
Answer: c
Clarification: None.

2. Which of the following function declaration is illegal?
a)

   double func();
   int main(){}
   double func(){}

b)

   double func(){};
   int main(){}

c)

   int main()
   {
       double func();
   }
   double func(){//statements}

d) None of the mentioned
Answer: d
Clarification: None.

3. What will be the output of the following C code having void return-type function?

  1.     #include 
  2.     void foo()
  3.     {
  4.         return 1;
  5.     }
  6.     void main()
  7.     {
  8.         int x = 0;
  9.         x = foo();
  10.         printf("%d", x);
  11.     }

a) 1
b) 0
c) Runtime error
d) Compile time error
Answer: d
Clarification: None.

4. What will be the data type returned for the following C function?

  1.     #include 
  2.     int func()
  3.     {
  4.         return (double)(char)5.0;
  5.     }

a) char
b) int
c) double
d) multiple type-casting in return is illegal
Answer: b
Clarification: None.

5. What is the problem in the following C declarations?

   int func(int);
   double func(int);
   int func(float);

a) A function with same name cannot have different signatures
b) A function with same name cannot have different return types
c) A function with same name cannot have different number of parameters
d) All of the mentioned
Answer: d
Clarification: None.

6. What will be the output of the following C code?

  1.     #include 
  2.     void main()
  3.     {
  4.         int k = m();
  5.         printf("%d", k);
  6.     }
  7.     void m()
  8.     {
  9.         printf("hello");
  10.     }

a) hello 5
b) Error
c) Nothing
d) Junk value
Answer: a
Clarification: None.

7. What will be the output of the following C code?

  1.     #include 
  2.     int *m()
  3.     {
  4.         int *p = 5;
  5.         return p;
  6.     }
  7.     void main()
  8.     {
  9.         int *k = m();
  10.         printf("%d", k);
  11.     }

a) 5
b) Junk value
c) 0
d) Error
Answer: a
Clarification: None.

8. What will be the output of the following C code?

  1.     #include 
  2.     int *m();
  3.     void main()
  4.     {
  5.         int *k = m();
  6.         printf("hello ");
  7.         printf("%d", k[0]);
  8.     }
  9.     int *m()
  10.     {
  11.         int a[2] = {5, 8};
  12.         return a;
  13.     }

a) hello 5 8
b) hello 5
c) hello followed by garbage value
d) Compilation error
Answer: c
Clarification: None.

Leave a Reply

Your email address will not be published. Required fields are marked *