[code=c]#include<stdio. h>
int arr[] = {1, 2, 3, 4, 5};
#define NUMBER_OF_ELEME NTS (sizeof(arr) / sizeof(arr[0]))
int main()
{
int index = -1;
if (index <= NUMBER_OF_ELEME NTS - 3)
printf( "A problem is not a problem if it CAN be solved\n"
"A problem is not a problem if it CANNOT be solved\n");
else
printf("Time stays long enough for anyone who will use it\n");
return 0;
}[/code]
can anyone give the explanation to why is the output "Time stays long enough for anyone who will use it."
int arr[] = {1, 2, 3, 4, 5};
#define NUMBER_OF_ELEME NTS (sizeof(arr) / sizeof(arr[0]))
int main()
{
int index = -1;
if (index <= NUMBER_OF_ELEME NTS - 3)
printf( "A problem is not a problem if it CAN be solved\n"
"A problem is not a problem if it CANNOT be solved\n");
else
printf("Time stays long enough for anyone who will use it\n");
return 0;
}[/code]
can anyone give the explanation to why is the output "Time stays long enough for anyone who will use it."
Comment