How many lines of code you have written for a single program?
Answer Posted / ilakya.g
Atleast there should be 4 lines.it must consists of main
with the parenthesis and atleast a statement in it.
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
When the constructor of a base class calls a virtual function, why doesn't the override function of the derived class gets called?
What is c++ flowchart?
What are structures and unions?
What is scope in c++ with example?
What are c++ data types?
What is anonymous object in c++?
How do you save a c++ program?
What are the various situations where a copy constructor is invoked?
In which situation the program terminates before reaching the breakpoint set by the user at the beginning of the mainq method?
What is difference between rand () and srand ()?
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.
Using a smart pointer can we iterate through a container?
Is rust better than c++?
Explain the problem with overriding functions
What are pointer-to-members? Explain.