#fibonacci
Read more stories on Hashnode
Articles with this tag
A simple program to convert binary numbers to normal numbers in C. #include<stdio.h> int main(){ int num,binary_num,decimal_num=0,base=1,rem; ...
An array is a container object that holds a fixed number of values of a single type. Basically A collection of similar data types stored at contiguous...
A function is a block of code that runs, only when it's called. You can pass data, known as parameters, into a function. Functions are used to perform...