Fibonacci Series Program in C | C Language Tutorial

preview_player
Показать описание
Fibonacci Series Program in C
C Language Tutorial Videos

? Visit Our Website for Classroom Training:
? For Online Training:
--------------------------

? About NareshIT:

"Naresh IT is having 20+ years of experience in software training industry and the best Software Training Institute for online training, classroom training, weekend training, corporate training of Hadoop, Salesforce, AWS, DevOps, Spark, Data Science, Python, Tableau, RPA ,Java, C#.NET, ASP.NET, Oracle, Testing Tools, Silver light, Linq, SQL Server, Selenium, Android, iPhone, C Language, C++, PHP and Digital Marketing in USA,Hyderabad, Chennai and Vijayawada,Bangalore India which provides online training across all the locations

--------------------------

? Our Online Training Features:
1.Training with Real-Time Experts
2.Industry Specific Scenario’s
3.Flexible Timings
4.Soft Copy of Material
5. Share Videos of each and every session.

--------------------------

+1404-232-9879 or India: +918179191999

** Check The Below Links**
? Follow us on Linkedin:
Рекомендации по теме
Комментарии
Автор

Mr. Shrinivas, you are an awesome teacher, you don't know how beneficial your lectures were for my during my exams, thank you so much for all your efforts. Hats off to you. 🙏

satyawanj
Автор

People here in the comments
Posting sir u forgot to declare i

That is very basic thing
Wat u have to focus is how to solve it by logical thinking that is the key

nithin
Автор

Shrinivas sir, you are really awesome! The way you teach, it increases the curiosity to run the code in my system. You are really a great teacher! lots of love and respect 🙏

ChessMind
Автор

I was just getting so confused solving it myself and he explained it so easily, great sir.

adityapatel
Автор

the program is fine but just need to change in initial value of b ==> b=1 and at the bottom instead of c=b; ==> b=c; remaining all steps are fine


complete code :
#include<stdio.h>

main(){
int n, i, a=0, b=1, c;
printf("enter n value");
scanf("%d", &n);
for(i=1;i<=n;i++)
{
printf("%d\n", a);
c=a+b;
a=b;
b=c;;

}

}

thehalfknowledge
Автор

simplest fibonacci series program, but "i" should be initialised.

saswatpradhan
Автор

Superb teaching for beginners in c, thank you so much sir 🙏

burhanuddinlokhandwala
Автор

Hello sir, I am really very thankful of Naresh IT institute☺️ for providing top class faculties🙏.Also I am very thankful of Shrinivas Sir😇 I have learned C programming at this platform.I got a wonderful learning experience with deep concepts analysis.It makes my time productive during this lockdown period and boostup my knowledge.Well I am from a very small village of Maharashtra sending lots of love and best wishes for such a great initiative.

Once again Thankyou 😇 Thankyou so very I am gonna switch another courses that you are providing

truptimore
Автор

Simple way to each any logic. Excellent. Hats-off Srinivas

ravishankardp
Автор

Sir plz post video on multiplication addition and substraction of matrix programm

Mrsrikanthnaik
Автор

Srinivas u cleared our concept so easily.. Thnx

kasak
Автор

Sir, seriously you are the fantastic teacher
I saw so many videos for c programming in YouTube, but I couldn't understood what they are saying.
Really You are an awesome teacher sir
Thank you so much sir 🙏🏻🙏🏻🥰

thanuhya
Автор

python is much easier:
f=1
s=1
print('fibonacci series')
print(f, s, end=' ')
t=int(input('enter limit upto which pattern should be generated:'))
for t in range(1, t+1):
t=f+s
f=s
s=t
print(t, end=' ')

nandakishorem
Автор

Im from Sri Lanka and I could learn something new from here. Thank you so much ❤

savagelover
Автор

This was a SOLID A! class. you are a great teacher Mr. Thank You.

MD
Автор

Thank you Sir. You are the perfect teacher.

Trejern
Автор

Tq so much sir u helped me a lot aslau nenu deenikosam thala baddakottukunna but intha easy anukole

aithukeerthana
Автор

thank you so much sir.
your vedios are very helpful. keeo

anjushrestha
Автор

Simple English and its very clear explanation... Tq sir 🤝

rajkumarmaddi
Автор

Sir in the above problem you didn't declared 'i' variable and whan coming to logic of program there is no 'i' variable in the logic

kittubittu