a.) scanf("d", value);
b.) Scanf("%d", anInterger);
c.) scanf("%d%d", &number1, number2);
a.) Read an integer from the keyboard and store the value entered in integer variable a .
b.) Read three integers from the keyboard and store them in variables x , y , and z .