โช Choose the correct option.
What is the output of the following C Program?
#include
void main()
{
unsigned int i=65000;
while(i++!=0);
printf("%d",i);
}
#include
void main()
{
unsigned int i=65000;
while(i++!=0);
printf("%d",i);
}