1,1,5,17,61,217,?,?.
Answers were Sorted based on User's Feedback
Answer / prasad shetty
773,2753
The logic looks like this
The number at position x will be
(number at x-1) * 3 + (number at x-2) *2
| Is This Answer Correct ? | 16 Yes | 6 No |
What standard functions are available to manipulate strings?
What is 1f in c?
What are the features of c languages?
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Explain 'bit masking'?
what is difference between declaring the pointer as int and char in c language?
How do you determine the length of a string value that was stored in a variable?
What is the Purpose of 'extern' keyword in a function declaration?
What are the advantages and disadvantages of c language?
Can we declare variable anywhere in c?