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 |
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
Is javascript based on c?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
What is the benefit of using an enum rather than a #define constant?
What is the difference between procedural and functional programming?
What is pointer to pointer in c with example?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Explain about the functions strcat() and strcmp()?
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
What is bubble sort technique in c?
Why #include is used in c language?
What is spaghetti programming?