Difference between class and structure.
No Answer is Posted For this Question
Be the First to Post Answer
What is atoi in c++?
What are c++ tokens?
What C++ libraries are you proficient with?
How would you represent an error detected during constructor of an object?
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
Explain deep copy and a shallow copy?
Const char *p , char const *p What is the difference between the above two?
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.
string somestring ; Which of the following choices will convert a standard C++ string object "somestring" to a C string? a) Copy.somestring () ; b) somestring.c_str () c) &somestring [1] d) std::cstring (somestring) e) (char *) somestring
What are the advantages of pointers?
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
Is c++ an oop?