1#include <stdio.h>
2int main() {
3 // printf() displays the string inside quotation
4 printf("Hello, World!");
5 return 0;
6}
7
1// the %d is a format specifier that search for a variable containing
2// an int in the printf function.
3printf("You entered: %d", number);