d, first person point of view
Diez was almost dead due to dehydration. His hopefulness and positive attitude to fight challenges helped him survive the odds.
Explanation:
The question is incomplete.
It is in reference to "Delfino II: Diez in the Desert".
Diez was crossing the border when they were in the desert at the North of Mexico with a group of immigrants. Diez along with other immigrants had suffered from bitter conditions like heat and severe dehydration. A woman in the group couldn't survive and Diez was almost dead due to dehydration. However, his hopefulness and positive attitude to fight the odds helped him to work on his goals and he survived the adversities. He encouraged the other members of the group not to give up and not get caught so that they reach their destination safely.
Um I'm assuming you didn't finish typing out this question??
Answer:
1) its because we managed to divide the answer so it is not a prime number.
2)
Code:
#include <stdio.h>
int main()
{
int i, j, n, isPrime; // isPrime is used as flag variable
/* Input upper limit to print prime */
printf("Enter your n : ");
scanf("%d", &n);
printf("Prime numbers from 1 to %d:\n", n);
/* Find all Prime numbers between 1 to n */
for(i=2; i<=n; i++)
{
/* Assume that the current number is Prime */
isPrime = 1;
/* Check if the current number i is prime or not */
for(j=2; j<=i/2; j++)
{
/*
* If i is divisible by any number other than 1 and self
* then it is not prime number
*/
if(i%j==0)
{
isPrime = 0;
break;
}
}
/* If the number is prime then print */
if(isPrime==1)
{
printf("%d,\n ", i);
}
}
return 0;
}
Answer:
When you're motivated .
Explanation:
Lyrical poetry comes from your heart and thoughts .