I was working under keil. What is my problem is header files are not including in the project. Actually .c file is including. But .h files are not including. What shall i do?
You know the difference between *.c and *.h files, don't you?
The *.c files are expected to be part of the project file, and each produce an object file that will be later linked.
The header files are not - they are expected to be #include'd from the *.c files. So not part of the project. But have to be stored in a path where the compiler can locate them.
So - correct the errors you have introduced in your project.
Thank u.. Actually i didnt give the correct path..