Computer Science, asked by shleshamogli, 3 months ago


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 jai696
8

\huge\red{\mid{\fbox{\tt{Using\: C}}\mid}}

#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;

}

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Answered by xxxxxxxxxx24
0

Answer:

Examples of Fixed Assets

Vehicles such as company trucks.

Office furniture.

Machinery.

Buildings.

Land.

Similar questions