Once enough charge has been separated in a growing storm, a lightning flash can occur. These normally travel within or between clouds (abbreviated CC) or from cloud to ground (CG). Most storms produce more CC than CG flashes--about six times as many in tropical storms and two times as many in midlatitudes. Sometimes a flash will travel from cloud to air or simply occur within "clear" air.
Exactly what triggers flashes is still uncertain and an area of continued research. It seems that very concentrated electric fields (perhaps at the ends of pointed surfaces or single particles) are needed to accelerate charged particles, or ions. Once moving with sufficient energy, the ions appear to blaze a path toward opposite charge in cascading fashion.
Answer:
#include <stdio.h> // header file inclusion
int main() // main function declaration
{
int number,product=0; // variable declaration
while(product<100) // while loop
{
scanf("%d",&number); // input a number
product= number*10; // multiply the number by product
printf("%d\n",product); // print the value of product
}
return 0; // return statement
}
Output:
- If the user enter 10 then the loop terminates for the first time and the output is 100.
- If the user enter 5,10 then the loop executes in 2 times and the output is 50 and 100.
Explanation:
- Firstly there is an inclusion of header file which understands the meaning of printf() and scanf() function.
- Then there is the main() function definition
- Then we declare a two-variable (number and product) of integer type.
- Then we define a while loop and check the condition that product value is less than 100 or not.
- Then we take input and multiply by 10.
- Then we assign the value in the product and print the product value.
step by step
1. Open the Disk Cleanup by clicking Start, point to All Programs, point to Accessories, point to System Tools, and then click Disk Cleanup. Disk Cleanup will then calculate how much space you will be able to free on your hard drive.
2.Select the files by clicking the check box that you would like to delete (e.g. Downloaded Program Files and Temporary Internet Files) and click OK
3. Click Yes to confirm performing these actions.
To read the description of the particular program file, click the appropriate file and the file description is displayed at the bottom. If you want view the files on the particular program file (e.g. Downloaded Program Files and Temporary Internet Files), click View Files.
4. Click More Options tab to free up more space on Windows components, installed programs or System Restore. Click Clean up
The sheave wheel is a pulley wheel that sits above the mine shaft. The hoist cable passes over the sheave wheel and then down the shaft of the mine.
(copied from google)