When a function is made inline. Write the situation where
inline functions may not work.
Answer Posted / sathishbca
inline function can be use in single line manipulations in
program it cannot use in looping, branching
Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Is sorted c++?
What do the header files usually contains?
Describe new operator?
What is an undefined reference/unresolved external symbol error and how do I fix it?
Explain some examples of operator overloading?
What is a tree in c++?
What is prototype in c++ with example?
Write a recursive program to calculate factorial in c++.
What is the size of integer variable?
Define what is constructor?
What is c++ best used for?
What is c++ redistributable?
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.
Explain what you mean by a pointer.
What do you mean by function overriding & function overloading in c++?