0
Output question
C program #include<stdio.h> int main() { extern int i; i = 20; printf("%d\n", sizeof(i)); return0; } What is the output of the above
1 Respuesta
C program #include<stdio.h> int main() { extern int i; i = 20; printf("%d\n", sizeof(i)); return0; } What is the output of the above