0

What is the output of the following C program?

#include <stdio.h>
 int main()
{
 char a = 30;
 char b = 40;
 char c = 10;
 char d = (a * b) / c;
 printf ("%d ", d);
  return 0;
}

Studently Edited question October 10, 2022