Fibonacci Series in C: The Fibonacci Sequence is the sequence of numbers where the next term is the sum of the previous two terms.
(System.`in`)// input total number of termsprintln("Enter terms : ")valn: Int = scanner.nextInt()varterm1 =0varterm2 =1varcount =1// Iterate Loop to print fibonacci Series upto given termswhile(count <= n){ print("$term1 ")vals = term1+term2 term1 = term2; term2 = s ...