Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by mxmauro

  1. M

    What does return X() mean in this C++ program, as X is not an object?

    Re: For C++ expert The return X() in the f5 function creates a temporary object of class X with the default constructor (ii=0) and copies it to the variable where you assigned the result. E.g.: X myVar; myVar = f5(); myVar.i will be equal to 0. (I don't remember if the compiler generates the...

Part and Inventory Search

Back
Top