include Preprocessor Directive In C Program
Satish B
http://technotip.com/6149/include-directive-in-c-program/
Usually you can see these “include” directive at the very top of your source code. It’s called a preprocessor.
All preprocessor statements in C start with a hash(#) symbol. include directive is similar to imports statement in Java.
This “include” directive causes one file to be included in another. For example, when we include stdio.h (header file) in our above program, all the content(code) gets imported or included in our program source code. This way we can make use of any function present inside stdio.h library file in our c program.
C Programming: Beginner To Advance To Expert
http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=4BBml3T8WK4
7576133 Bytes