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 |
Who made c++?
What are keywords in c++?
Write a program to find the reverse Fibonacci series starting from N.
If there are 1 to 100 Numbers in array of 101 elements. Which is the easy way to find repeated number?
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;
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 .
Is C++ case sensitive a) False b) Depends on implementation c) True
What is fflush c++?
Is it possible for a member function to delete the pointer, named this?
What are the conditions that have to be met for a condition to be an invariant of the class?
What are c++ tokens?
Can non-public members of another instance of the class be retrieved by the method of the same class?