IGDTUW 2025 — Computer PYQ
IGDTUW | Computer | 2025What will be the output of following C program code?
#include <stdio.h>
int x = 5;
int main()
{
int x = 10;
{
int x = 20;
printf("%d ", x);
}
printf("%d", x);
return 0;
}

