Kizspy | Question: 11
(Choose 1 answer)
FJOVERFLOW.COM
What is the output of the following code snippet?
#include <stdio.h>
int x 9:
void someFunction() {
int x = 8:
printf("%d",x);
int main() {
someFunction();
printf("%d",x);
return 0;
A. 89
B. 98
C. 88
D. 99