C - Basics and Execution Environment
What will be the output of this C code?
#include <stdio.h>
int main() {
int a = 5;
int b = 3;
printf("%d", a + b);
return 0;
}