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 is the diffrenet bettwen HTTP and internet protocol
fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
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
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
Are pointers integer?
Are the variables argc and argv are always local to main?
What is main () in c language?
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
What are the types of unary operators?