โช Choose the correct option.
What is the output of the following C Program?
#include
void main()
{
signed char i=0;
for(;i>=0;i++) ;
printf("%d
",i);
}
#include
void main()
{
signed char i=0;
for(;i>=0;i++) ;
printf("%d
",i);
}