1,4,8,13,21,30,36,45,54,63,73,?,?.
Answer Posted / thomas
1
1 + one (3 letters) = 4
4 + four (4 letters) = 8
8 + eight (5 letters) = 13
13 + thirteen (8 letters) = 21
21 + twenty one (9 letters) = 30
and so forth
| Is This Answer Correct ? | 80 Yes | 14 No |
Post New Answer View All Answers
How does normalization of huge pointer works?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Why can arithmetic operations not be performed on void pointers?
What is an example of structure?
What is integer constants?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
When would you use a pointer to a function?
What do you mean by a sequential access file?
What is the equivalent code of the following statement in WHILE LOOP format?
What is a class c rental property?
What is the difference between c and python?
When should structures be passed by values or by references?
Explain indirection?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Explain how can I open a file so that other programs can update it at the same time?