Tag: logic refresh

08
Apr
2017

Fibonacci in C(easy code logic)

code: #include <stdio.h> #include <stdlib.h> int main() { int first=0,second=1,N,temp; printf(“Put value greater than 1: “); scanf(“%d”,&N);…