What is more efficient to pass as a parameter--a pointer or
an object? Why?
Answer / amar
Passing a parameter by pointer is more efficient than
passing as object. When a parameter is passed as object
another of copy of the object is created on stack hence it
has two overheads, 1. it takes cpu cycle while creating
copy object 2. it takes memory on stack.
Passing the parameter through pointer could lead to a
situation where function can acciedently change the value
of the object.
| Is This Answer Correct ? | 1 Yes | 0 No |
How do I change visual code font?
How do I reinstall microsoft visual c++?
What Is InfoViewer?
How do I uninstall visual c++?
Is it safe to uninstall microsoft visual c++ 2008 redistributable?
What is vcredist?
What is ole? How do you handle drag and drop in ole?
How can we use cmutex?
what is the difference between the codes written in the document class and view class
A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.
Can I uninstall visual c++ 2005?
Difference between getmessage, postmessage & peakmessage.