how i can have to include a file into anther c program and how to compile and run that program inside that c file also how i can have to get the address and values of variables that used inside that included file..... plz help me
You should only '#include' header files, NOT '.c' files. '.c' files should be added to your makefile or project to be linked into your program. Jim