Write HTML coding to create a webpage about “ Corona Virus Safety Rules” Include different types of lists and also try to include some data in the form of table. ( USE DEFINITION LISTS ALSO) Take your own data and background color.
Answers
Answer:
I don't know html coding
Explanation:
The generally accepted standard for “normal” blood pressure is 90/60 to less than120/80. If your blood pressure is consistently lower than 90/60, you have low blood pressure. Blood pressure between 120/80 and 140/90 is still considered normal.
Answer:
This is known as declaration of x. As discussed earlier, it will allocate a space in the memory of the computer to 'x' and the amount of space allocated will depend on the complier.
x = 10 → It is assigning the value '10' to the variable 'x'. We can give any value to 'x'.
We have given an integer value to the variable 'x' because we have already declared that the variable 'x' is an integer - int x. If we want to give something other than an integer like a character value to 'x', then we use char before x (in place of int). Similarly, if we want to give a decimal value, then we use float or double before 'x'.
%d is for int
%c is for char
%f is for float
Let's see an example of taking and displaying a float, a double and a char value.