How many types of comments are there in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about profiling?
"How will you merge these two arrays? Write the program Array: A 1 18 22 43 Array: B 3 4 6 20 34 46 55 Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
9 Answers College School Exams Tests, HCL,
Can we specify variable field width in a scanf() format string? If possible how?
Explain the difference between struct and class in terms of access modifier.
List down the guideline that should be followed while using friend function.
what is the size of this class class size { public: char data1; double d; int data2; char data3; double data4; short data5; }; please explain the padding for these double variables.
Explain the isa and hasa class relationships. How would you implement each?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
What are exceptions c++?
why and when we can declar member fuction as a private in the class?
What is an action class?
Why can you not make a constructor as const?