Happy Coding Tamil

What will be the output of the program, if a short int is 2 bytes wide?

#include<stdio.h>
int main()
{
short int i = 0;
for(i<=5 && i>=-1; ++i; i>0)
printf("%u,", i);
return 0;
}

2 years ago | [YT] | 3