What would be the output of the following program?
main()
{
extern int i;
i = 20;
printf( "%d", sizeof(i) );
}5
775 5b5cc7dde4d2b419777515f9
Q: What would be the output of the following program? main() { extern int i; i = 20; printf( "%d", sizeof(i) ); }
- Show Answer
- Workspace
- Discuss