Write a program to declare two integer variables and give them appropriate
values in the program itself (without scanf(). You are required to print the
two numbers and print the result of the two operators used for division. Write
an output.
Answers
Answered by
8
#include <stdio.h>
int main()
{
int firstInt, secondInt;
printf("Enter an integer: ");
scanf("%d", &firstInt);
printf("Enter an integer: ");
scanf("%d", &secondInt);
printf("firstInt: %d\nsecondInt: %d\n", firstInt, secondInt);
printf("firstInt / secondInt = %d\n", firstInt / secondInt);
return 0;
}
Answered by
0
Answer:
Examples of Fixed Assets
Vehicles such as company trucks.
Office furniture.
Machinery.
Buildings.
Land.
Similar questions