write a function signature with various number of parameters.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Write a program to get the value of sin (x) using a library function , when x is given in degrees.

1 Answers  


What is command line arguments in C++? What are its uses? Where we have to use this?

0 Answers   HCL,


Describe Trees using C++ with an example.

0 Answers  


What is constructor c++?

0 Answers  


How do you link a C++ program to C functions?

4 Answers  






int f() { int I = 12; int &r = I; r += r / 4; int *p = &r; *p += r; return I; } Referring to the sample code above, what is the return value of the function "f()"? a) 12 b) 15 c) 24 d) 17 e) 30

2 Answers   AIG, Quark,


How can you quickly find the number of elements stored in a static array?

0 Answers  


What do you mean by storage classes?

1 Answers  


What is the difference between while and do while loop?

0 Answers  


How would perform Pattern Matching in C++?

0 Answers   Genpact,


What is a far pointer? where we use it?

0 Answers  


Write a C++ program to sort digits of all the 4 digit number and display the sorted 4 digit number

1 Answers   TATA, TCS,


Categories