Fibonacci series program in C | Program to find Fibonacci series in C | #4 Coding Bytes

preview_player
Показать описание
In this video, we will discuss the following 3 programs on the Fibonacci series.

Also, to receive placement preparation tips and placement related updates on TCS, Accenture and various other companies. Come join the largest 2020 Passouts Community on FACE’s Telegram and WhatsApp, and take your placement preparation to the next level.

Join here:
Рекомендации по теме
Комментарии
Автор

I have been watching this video from the first. It is helping me a lot to understand C programming concepts easily and quickly. Thanks to FACE prep team.

malinis
Автор

Fibbonaci series for printing nth term: This code looks more simpler
main()
{
int i, n, a=0, b=1, c=0;
scanf("%d", &n);
if(n==1 || n==0)
printf("1");
else
{
for(i=3;i<=n;i++)
{
c=a+b;
a=b;
b=c;
}
printf("%d", c);
}
return 0;
}

naveenvelusamy
Автор

these are actually easy to understand as a starter, thankyou maam. Can we have more interview related C Coding questions 2020, this year?

DristiHandiqueRA
Автор

All 3 programs are explained very well. I liked it ma'am

ritutiwari
Автор

If(n==1)
Return 0
If(n==2)
Return 1

vijibang
Автор

I dont have any idea about c language
Can you explain in Java

manojkumarvavilapalli
Автор

I can understand logic .but moving speed away for logic explanation.

pardhasaradhilokarapu
Автор

Kindly increase the size of alphabets in the program.its too small in size.

arkamitra
join shbcf.ru