How are Structure passing and returning implemented by the compiler?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is it possible for the objects to read and write themselves?

0 Answers  


Differentiate between declaration and definition in C++?

1 Answers  


Explain the difference between new() and malloc() in c++?

0 Answers  


What is the Maximum Size that an Array can hold?

55 Answers   Adobe, FutureSoft, HCL, Infosys, Satyam, TCS, Wipro,


1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,






What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }

4 Answers  


What are the types of container classes?

0 Answers  


What are the effects after calling the delete this operator ?

0 Answers  


Explain data encapsulation?

0 Answers  


write a program that takes 5 digit no and calculate 2 power that no and print it.

3 Answers  


What is the difference between C and CPP?

0 Answers   iNautix,


What is jump statement in C++?

0 Answers   Ericsson,


Categories