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 quangchungnguyen

  1. Q

    how to convert int to string?

    I have written a function itoa(number) for Pic in C18. It's similar itoa function in c,c++. it's change a 16 bit integer number to string char chuoi_so_nguyen[7]; char *itoa(short int n ) { unsigned char d4, d3, d2, d1, d0, q; if (n < 0) { chuoi_so_nguyen[0]='-'; n = -n; } else {...

Part and Inventory Search

Back
Top