“#include tells the C compiler to find the standard header called and add it to this program. In C, you often have to pull in extra optional components when you need them. contains descriptions of standard input/output functions” — Wiki Books Copy Share Image
“return 0; will return zero (which is the integer referred to on line 3) to the operating system. When a program runs successfully its… — Wiki Books Copy Share Image
“int main(void) is something you'll find in every C program. Every program has a main function. Generally, the main function is where a program… — Wiki Books Copy Share Image
“#include tells the C compiler to find the standard header called and add it to this program. In C, you often have to pull… — Wiki Books Copy Share Image
“Assembly, while extremely powerful, is simply too difficult to program large applications and hard to read or interpret in a logical way. C is… — Wiki Books Copy Share Image
“many programmers prefer and recommend using an Integrated development environment (IDE) instead of a text editor.” — Wiki Books Copy Share Image
“minimum software requirements to program in C is a text editor, as opposed to a word processor. A plain text Notepad Editor can be… — Wiki Books Copy Share Image
“int at the beginning means that main will return an integer to the operating system” — Wiki Books Copy Share Image
“Unlike most computer languages, C allows the programmer to write directly to memory. Key constructs in C such as structs, pointers and arrays are… — Wiki Books Copy Share Image
“debugger, a tool that will preserve your C source code after compilation and enable you to do such things as step through it manually,… — Wiki Books Copy Share Image
“Notepad++ for Windows, Sublime Text, Vim and Emacs are also available cross-platform. These text editors come with syntax highlighting and line numbers, which makes… — Wiki Books Copy Share Image
“a C compiler. A compiler is a program that converts C code into executable machine code.” — Wiki Books Copy Share Image