Answer:
#include <stdio.h>// inclusion of header file.
int main()// definition of main function.
{
int Quotient,divisor; // declare the two numbers for operation.
scanf("%d %d",&Quotient,&divisor); // take the user inputs by scanf() function.
printf("The division result of the number = %f",Quotient/divisor);
// print statement to print the division.
return 0; // return statement.
}
Output:
- If the user input is 10 and 9 then the output is 1.
- If the user input is 4 and 2 then the output is 2.
Explanation:
- Firstly there is a file inclusion which helps to understand the input and output function
- Then we declare two variables of integer type which take a value of integer type.
- Then there is a scanf statement which takes the input from the user. The '%d' format specifies that the value is in an integer value.
- Then there is a print statement that gives the divisor in floating value. The division operation is written in the printf statement which is used to print the value. '%f' display the value in decimal value.
Answer: The ability to communicate with other users
Explanation:
Blockchain technology refers to a structure which help in the storage of transactional records of people in databases, which is referred to as the chain. It is connected in a network by peer-to-peer nodes.
One main benefit of the Blockchain technology for the SUber dApp is that it gives one the ability to communicate with other users.
Answer:
It's a non-negative num.
Explanation:
As the value of num=0 is given in the input.First it will check "if(num<0)" condition,
here this condition false. Then it will check "else" condition and give an alert as
"It's a non-negative num.".In there is "if-else" condition given, only one of them
will be executed based on their TRUE value.