compute the nth mumber in the fibonacci sequence?
Answer Posted / sharma v
Can anyone tell why it is going in an infinite loop
dim a, b, c
a=0
b=1
c=a+b
print a
print b
n=InputBox( "Enter a number")
while c<=m
print c
a=b
b=c
c=a+b
wend
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
How do you use a pointer to a function?
What do the functions atoi(), itoa() and gcvt() do?
Why is c faster?
What is difference between structure and union in c programming?
Is c dynamically typed?
Can the size of an array be declared at runtime?
Explain 'bus error'?
What are the two types of structure?
What is the difference between array_name and &array_name?
Why is c called c?
Why we not create function inside function.
Is it possible to execute code even after the program exits the main() function?
What is c value paradox explain?
Why c is called a mid level programming language?