What do the header files usually contains?



What do the header files usually contains?..

Answer / Vipnesh Sharma

The two shift operators in C++ are the left shift operator (<<) and the right shift operator (>>). The left shift operator shifts bits to the left by a specified number of positions, filling vacated positions with zeros on the most significant side. The right shift operator shifts bits to the right by a specified number of positions, filling vacated positions with zeros on the least significant side.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Who made c++?

1 Answers  


What are keywords in c++?

1 Answers  


Write a program to find the reverse Fibonacci series starting from N.

1 Answers   Huawei,


If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?

2 Answers   Persistent,


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .

1 Answers  


Is C++ case sensitive a) False b) Depends on implementation c) True

1 Answers  


What is fflush c++?

1 Answers  


Is it possible for a member function to delete the pointer, named this?

1 Answers  


What are the conditions that have to be met for a condition to be an invariant of the class?

1 Answers  


What are c++ tokens?

1 Answers  


Can non-public members of another instance of the class be retrieved by the method of the same class?

1 Answers  


Categories