9. What will be the output of the program?
#include <stdio.h>
#include <conio.h>
int main(){
int first=10, second=20, add, subtract, multiply;
float divide, modulus;
add = first + second;
subtract = first - second;
multiply = first * second;
divide = first / (float)second;
modulus = first % second;
printf("Sum = %d %d %d %d %d \n",add, subtract, multiply, divide, modulus);
return 0;
}