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
Not a member yet? Register now
Are you a member? Login now