WAP to print the Fibonacci sequence up to a given term using function
Write a program to print the Fibonacci sequence up to a given term using function Output Enter term:40 1 1 2
Write a program to print the Fibonacci sequence up to a given term using function Output Enter term:40 1 1 2
Write a program find the largest and the smallest number from given numbers Output Enter the size of 1d array: 5Enter array element:23145Largest = 5Smallest = 1
Write a program to calculate the area of a triangle using function Output Enter the sides of triangle:345Area of triangle is 6.000000
Write a program to calculate the area of a circle, rectangle, square using function Output Enter radius of circle:2Enter two sides of the rectangle:34Enter the …
Write a program to print the address of variables using pointer Output Address of a = 6422300Address of b = 6422296Address of a = 6422300Address of b = 6422296