Which of the following is evaluated first:
a) &&
b) ||
c) !
No Answer is Posted For this Question
Be the First to Post Answer
What does floor mean in c++?
What are libraries in c++?
What is different in C++, compare with unix?
Describe exception handling concept with an example?
if i want cin 12345678910 and cout abcdefghij. so how can i create the program?. example : if i key in 8910 so the answer is ghij.
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
give me an example for testing a program showing the test path .show how the test is important and complex.
what is the use of void main() in C++ language?
Can a constructor throw a exception? How to handle the error when the constructor fails?
Explain how we implement exception handling in c++?
Can a program run without main in c++?
What is oop in c++?