What is conditions when using boolean operators?


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

Post New Answer

More C++ General Interview Questions

Why cstdlib is used in c++?

0 Answers  


What is the outcome of cout< a) 16 b) 17 c) 16.5

0 Answers  


What is lvalue?

0 Answers  


If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 Answers  


Which is most difficult programming language?

0 Answers  






What are containers in c++?

0 Answers  


Is recursion allowed in inline functions?

0 Answers  


What is a storage class used in c++?

0 Answers  


What is the difference between object-oriented programming and procedural programming?

0 Answers  


what do you mean by memory management operators

4 Answers   HCL,


What is the best free c++ compiler for windows?

0 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,


Categories