Specify different types of decision control statements?
No Answer is Posted For this Question
Be the First to Post Answer
If a header file is included twice by mistake in the program, will it give any error?
What is the difference between prefix and postfix versions of operator++()?
how many controls can we place on single form.
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is an arraylist c++?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
Can a constructor return a value?
Write any small program that will compile in "C" but not in "C++"
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;
What happens if a pointer is deleted twice?
why can't we declare data member of class auto register or extern
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;