How much is size of struct having 1 char & 1 integer?
Answers were Sorted based on User's Feedback
Answer / shraddha
char --> 1 byte & int --> 4 bytes
so total 5 bytes
| Is This Answer Correct ? | 2 Yes | 10 No |
If there are two catch statements, one for base and one for derived, which should come first?
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?
What is 'Copy Constructor' and when it is called?
What is c++ hash?
What are the different data types present in C++?
Define anonymous class.
Can you pass a vector to a function?
Is there a c++ certification?
What does the ios::ate argument do?
Evaulate: 22%5 a) 2 b) 4 c) 0
What are associate containers?
What is an adaptor class in c++?