I am confuse, can we say that below function return only integer value ( 0,1,2,3,4)
int delay (void)
{
unsigned int i;
for (i = 0; i < 5; i++)
{
printf(" Print number : %d \n ",i);
}
return i;
}
so when this function execute it return only integer...