what are the advanced features of functions

a) function declaration and prototypes

b) calling functions by value or by reference

c) recursion

d) all the above



what are the advanced features of functions a) function declaration and prototypes b) calling ..

Answer / Poisha

d) all the above

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is the diffrenet bettwen HTTP and internet protocol

1 Answers  


fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

1 Answers  


Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.

2 Answers   Scientific Atlanta, Wipro,


code snippet for creating a pyramids triangle ex 1 2 2 3 3 3

4 Answers  


what information does the header files contain?

6 Answers   BSNL, Cisco, GDA Technologies,


Explain the properties of union. What is the size of a union variable

1 Answers  


Are pointers integer?

1 Answers  


Are the variables argc and argv are always local to main?

1 Answers  


What is main () in c language?

1 Answers  


Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All

3 Answers   Accenture,


What are the types of unary operators?

1 Answers  


Categories