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 sathishkrishna

  1. S

    How to define the enum on global use in C?

    Re: enum in C in a.h typedef enum{APPLE, BALL, CAT}thing; in b.c //make sure that path is correct for a.h. if it is loacl then u can do as below other //wise u need to give the full path from the root #include "a.h" thing things; int main() { return 0; }
  2. S

    How to create folder at a specified path by using c++ ?

    Re: foldering in c++ Here is the example which works indpendent of platform mkdir : Creates a directory. Syntax: int mkdir(const char *path); Prototype in: dir.h Remarks: mkdir creates a new directory from the given path name path. Return Value: mkdir returns the value 0 if the...
  3. S

    How to generate time delay in C++?

    Re: DELAY a delay of micro second is not possible using c++ libraries directly, you have to write s/w for generating interrupt each operation say addition takes 1(divided by) speed of your computer (say 1.G Hz) then the operation is completed in 1 nano second... so extend the concept to...
  4. S

    How important is the Pointer and when to use it ? (C)

    Re: C Pointer U can get more help how not to misuse the pointers, from the above topic.
  5. S

    Website with Nokia service manuals

    Re: nokia service manual gsm The links given in the site are not working.. can u plz provide me 10x in advance sathish krishna
  6. S

    file modification code

    U can acess the file flags such as the date and time and attributes(hidden/readonly/system) from the C functions itself, I think ur purpose is solved
  7. S

    How important is the Pointer and when to use it ? (C)

    Re: C Pointer Pointers are a very powerful, but primitive facility contained in the C language. Pointers are a throwback to the days of low-level assembly language programming and as a result they are sometimes difficult to understand and subject to subtle and difficult-to-find errors. Still it...
  8. S

    How to compile C and Assembly code together ?

    Have u observed the option -B in tcc (if u r using turbo c) its for compiling assembly language with C. there is one preprocess which will tell the compiler that asmbly lang is incluede that is #pragma inline here with different compilers... If you have an assembly function that you want to...
  9. S

    Can windows platform application make using C?

    Any thing can be possible with C, even these win32 API's can be customized or created to define to do the process automaticall from windows... one is microsoft vc++ & VB whics is easy for using thees API's
  10. S

    is harmful to remove HDD.........??

    Ofcourse its not harmull.... ones the harddisk is removed... nothing is lost but on windows the OS will be cheking the devices continuously so system will stop functioning.. the only way then is to restart the system.
  11. S

    Johan Wevers' Physics & Maths Formulary

    This document contains a 108 page LATEX file which contains a lot equations in physics. It is written at advanced undergraduate/postgraduate level. It is intended to be a short reference for anyone who works with physics and often needs to look up equations. This, and a Dutch version of this...

Part and Inventory Search

Back
Top