If jack lies on Mon, Tue Wed and jill lies on Thursday,
Friday and Saturday. If both together tell they lied
yesterday. So c the given options and then c cos in the
given dates one will be saying the truth and one will be
lying. I got Thursday as option because jack is saying the
truth he lied yest but jill is lying again as he lies on
that day.
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning When we write "#include" what is # and what does include does there???
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
what is unsigened char and what is the difference from char
What is the data segment that is followed by c?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
Write a C program to convert an integer into a binary string?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
What are the string functions? List some string functions available in c.
What is the difference between i++ and i+1 ?(in terms of memory)
what is the function of void main()?
What does static variable mean in c?
What are register variables? What are the advantage of using register variables?