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 |
write a program to print sum of each row of a 2D array.
What ios diff. Between %e & %f?
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is a pointer?
What is the use of a conditional inclusion statement in C?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Write a program on swapping (100, 50)
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
c program to input values in a table(using 2D array) and print odd numbers from them
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
Tell me is null always defined as 0(zero)?