Hide menu

FAQ TSEA81

[an error occurred while processing this directive]

TSEA81 - Computer Engineering and Real-Time Systems

FAQ

    • Q - Shall I use #include "file_name.h" or #include <file_name.h>?
    • A - Use #include "file_name.h" for your own files, i.e. files belonging to your program. These files are typically stored in the same directory as the file with the include statement (the src directory in a simple_os_app directory). Use #include <file_name.h> for files avaiable in Linux/Windows or simple_os, e.g. #include <simple_os.h> and #include <stdio.h>

Page responsible: Kent Palmkvist
Last updated: 2016-10-20