In my C program using "#include
" shows the following error:
"types.h: No such file or directory"
But the error is corrected if I use "#include" instead.
Now I know that "#include" means "Include this header file types.h".But what exactly does "include" mean? My gut feeling (which generally betrays me) tells that "#include" tells the compiler to look for this header file in the parent directory while "#include" tells the compiler to look for the header file in the SUBFOLDER called "sys",ie, inside this sub-folder of parent directory rather than the parent directory(ie parent directory root) itself.So please clear the whole thing for me.