Learning and Teaching Coding

What is the output of the following code below?

#include<stdio.h>
void main() {
int sum = 2 + 8 / 2 + 6 * 3;
printf("%d", sum);
}

1 year ago | [YT] | 4