Why cout is used in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between the indirection operator and the address of oper-ator?
Which bit wise operator is suitable for turning off a particular bit in a number?
What are built-in functions? What is the syntax for the definition?
Explain linked list using c++ with an example?
What is a static member?
Differentiate between a constructor and a method in C++.
what is oops and list its features in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
Explain friend class?
given the code segment below void main() { cout<<"my no. is"; } question is how can we get the output hai aravind my no. is 99999999999 without editig the main().
What causes a runtime error c++?
What is abstraction with real time example?