HTML stands for HyperText Markup Language.
To find the date on your computer type on command prompt:
date
and you will receive an answer like:
The current date is: Sat 02/07/2004
This is a very simple function in C:
int sum (int x, int y) {return x+y;}
The variables x, and y have a local scope inside of the function body.
Don’t forget to add a return statement!