Level 12
Level 14
4 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
#include <stdio.h>
The first line of the program that a preprocessor command, which tells a C compiler to include stdio.h file before going to actual compilation.
int main()
The next line after #include <stdio.h> is the main function where program execution begins.
/* */
will be ignored by the compiler and it has been put to add additional comments in the program. So such lines are called comments in the program.
printf(...)
A function call usually within brackets "{ }" available in C which causes the messages such as "Hello, World!" to be displayed on the screen