What are literals in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 3 levels of programming languages?
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?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
What are smart pointer? Whats its use?
If you don’t declare a return value, what type of return value is assumed?
Explain about Virtual Function in C++?
How do you save a c++ program?
What is the difference between *p++ and (*p)++ ?
What is class invariant?
Write a program to add three numbers in C++ utilizing classes.
Can we declare destructor as static? Explain?
What are the rules about using an underscore in a c++ identifier?