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 booklog

  1. B

    algorithms by dasgupta

    algorithms dasgupta solution manual Hi, Anybody got solution manual for the book "algorithms by Sanjoy dasgupta, Christos Papadimitriou, Umesh Vazirani"? If you have please post it here. Thanks Chappar
  2. B

    What's the difference between int and short int in C?

    Re: int and short int According to C standard max short size is 2 bytes. Int can be more than that. Only in machine where int is 2 bytes, both short and ant are same. Other wise they r different.
  3. B

    How to get the core dump to analyse the process which stopped on SOLARIS 10?

    Re: SOLARIS 10 thread Core dumb will be generated when your process does some blunder(Seg fault, devide by zero, etc) and terminated by OS. I don't think for simple thread termination, the core will be generated.
  4. B

    How to achieve a bigger value of counting in C?

    Re: counting in C... If you want still bigger declare it as long long type, which is i think 8 bytes long
  5. B

    Help me out solve a problem with C++ code

    I have following code. #include<iostream> using namespace std; class A{ public: int x; A():x(10){} }; class B{ public: A* p; B():p(0){} B(A* a):p(a){cout<<"Inside B(A* a)"<<endl;} }; int main(){ B b; b = new A; cout << b.p->x << endl; return 0; } when i compiled...
  6. B

    How to access C variables in .c files ?

    Re: variable in C The variable Timer1 should be global
  7. B

    Looking for Exploring Expect book

    Re: exploring expect Nobody got this!.
  8. B

    Looking for Exploring Expect book

    exploring expect download chinese I need this book "exploring expect". If anybody got this, please post it here.
  9. B

    Help me fix C code error - "the function is incomputable with its declaration."

    Re: C problem You are calling some function which does not exists.
  10. B

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

    In the below program, i want to know what function f5 is trying to do. What does return X() mean, since X() is not a object. class X { int i; public: X(int ii = 0); void modify(); }; X::X(int ii) { i = ii; } void X::modify() { i++; } X f5() { return X(); }
  11. B

    What is the advantage of DCT over Wavelet?

    What is the advantage of DCT over Wavelet, that made it to be widely used many in compression standards.
  12. B

    How to extract the low byte of a float variable and store it in a char variable?

    Re: qustion for C expert Hi Lambtron, Whatever u have posted, need some modification. The correct code is as below char GetLsb( float *f ) { int a = 5 ; return ((char *)f)[ (((char*)&a)[0] == 5)) ? 0 : (sizeof(float)-1) ]; }
  13. B

    How to extract the low byte of a float variable and store it in a char variable?

    Re: qustion for C expert It depends byte ordering in the machine. i.e. the machine is little endian or big endian. Here is a C code for little endian float a; // float variable whose low byte is needed char *ptr, b; ptr = (char *)&a; b = ptr[0]; // b contains the low byte of a now. .. Hope...
  14. B

    "C++ design and evolution" by Stroustrup needed

    If anybody got the link for "C++ design and evolution" by Stroustrup, please post it here.
  15. B

    How to solve this error: bad executable format(Win32 error193)?

    Re: c++ help Can you elaborate ur problem

Part and Inventory Search

Back
Top