which is the easy way to divide any integer by 2?
Answers were Sorted based on User's Feedback
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];
What happens when a function throws an exception that was not specified by an exception specification for this function?
which is best institue to learn C/C++ IN AMEERPET OR MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE
write a c++ program that gives output 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 using looping statement
What is basic if statement syntax?
What is difference between rand () and srand ()?
Explain how to initialize a const member data.
What kind of jobs can I get with c++?
Does c++ have arraylist?
When we use Abstract Class and when we use Interface?where we will implement in real time?
Can we declare a base-class destructor as virtual?