Answer Posted / nashiinformaticssolutions
The noexcept keyword specifies that a function does not throw exceptions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain object slicing in c++?
How is new() different from malloc()?
What are the 4 types of library?
What is the use of volatile variable?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.
Where is atoi defined?
How do you compile the source code with your compiler?
What is a wchar_t in c++?
Where Malloc(), Calloc(), and realloc() does get memory?
Is it possible to provide default values while overloading a binary operator?
Describe the advantage of an external iterator.
Define anonymous class.
What are the extraction and insertion operators in c++? Explain with examples.
What is &x in c++?