Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
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. 🙏
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
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 🙏
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 main(){ int n,i,a=0,b=1,c; printf("enter n value"); scanf("%d",&n); for(i=1;i
Declaring a variable isn't the same as initialising it. Here i is initialised with "i = 1" but is not declared. To declare it you need "int i". You can also do both at the same time with "int i = 1"
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 Much..........🙏and I am gonna switch another courses that you are providing
Sir , seriously you are the fantastic teacher I saw so many videos for c programming in RUclips, but I couldn't understood what they are saying. Really You are an awesome teacher sir Thank you so much sir 🙏🏻🙏🏻🥰
Super explaination sir ,please make some videos on make file concept (in which client, server and header files are included)as soon as possible at least in one week
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=' ')
Hello Naresh Sir I have 2 questions in the Fibonacci program 1. We have used printf for printing a value then what about b and c how they are printed? 2. If i itself is initialized as i=1 then i++ will become 2 correct. I am very new to programming and in learning phase please advice me
This is wrong.The print will be 1,1,1,1.Here is the fixed code: #include int main () { int limit,a=0,b=1,c=0,i; printf("Enter Limit: "); scanf("%d",&limit); i=0; while (i
first a=0,b=1 then the sum of them is c =1; Then the value of b which is 1 is stored in a then c's value is stored in b so there is no need for b's execution because of the assignment operator its value changes constantly.
PLEASE answer below question write a c program that create data structure that are larger than the amount of physical memory contained in their machine
Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL
How much cost to learn python
Sir aap Jo program likh rhe ho isme sir vo run nhi ho rha hai aapne isme i variable declare nhi kiya hua hai krna pdega Kya?
sum += sum + i will work? (when sum = 0)
write a program to print fibonacci series given to seeds value by the user using do while construct
Best ever programming teacher in the world....✨✨💥💥 thankyou very much.....🙏
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. 🙏
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
😊
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 🙏
I was just getting so confused solving it myself and he explained it so easily, great sir.
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
main(){
int n,i,a=0,b=1,c;
printf("enter n value");
scanf("%d",&n);
for(i=1;i
simplest fibonacci series program ,but "i" should be initialised.
It is initialised bro, look at 1st part of for loop 'i=1'.
Saswat Pradhan is correct because iam getting error bro
Declaring a variable isn't the same as initialising it.
Here i is initialised with "i = 1" but is not declared.
To declare it you need "int i".
You can also do both at the same time with "int i = 1"
@@hianshul07 yes!!!
he also did not written header file, it do not mean he has written wrong, only understand the logic, and that is
great.
Superb teaching for beginners in c, thank you so much sir 🙏
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 Much..........🙏and I am gonna switch another courses that you are providing
Sir plz post video on multiplication addition and substraction of matrix programm
Sir , seriously you are the fantastic teacher
I saw so many videos for c programming in RUclips, but I couldn't understood what they are saying.
Really You are an awesome teacher sir
Thank you so much sir 🙏🏻🙏🏻🥰
PRINT
with new tricks 2022.... 👇🏻
ruclips.net/video/K5RtZN36lYI/видео.html
Simple way to each any logic. Excellent. Hats-off Srinivas
Srinivas u cleared our concept so easily.. Thnx
Sir, actually we wrote printf for only 'a', but O/P of Fibonacci is 'b'
Im from Sri Lanka and I could learn something new from here. Thank you so much ❤
Super explaination sir ,please make some videos on make file concept (in which client, server and header files are included)as soon as possible at least in one week
This was a SOLID A! class. you are a great teacher Mr. Thank You.
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=' ')
But "C" is the basic.😂😂
Thank you Sir. You are the perfect teacher.
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
Just know the logic don't act like a compiler fo
Sir declared i with data type of int you can see in prog
wow so impressive what a way to iterating a program, mind blowing.......
Sir thank u ao much... The way u r teaching is very easy to understand🙏
Hello Naresh Sir
I have 2 questions in the Fibonacci program
1. We have used printf for printing a value then what about b and c how they are printed?
2. If i itself is initialized as i=1 then i++ will become 2 correct.
I am very new to programming and in learning phase please advice me
mera le
Watch apna college c programming
Simple English and its very clear explanation... Tq sir 🤝
PRINT
with new tricks 2022.... 👇🏻
ruclips.net/video/K5RtZN36lYI/видео.html
Sir please post the flow chart for this Fibonacci series logic....☺️🙏
very easy to understand andclear.thank u for posting sir
We can learn even toughest subjects if we have a good teacher😊😊
Yes.
PRINT
with new tricks 2022.... 👇🏻
ruclips.net/video/K5RtZN36lYI/видео.html
Tq u so.much❤️for ur simple explanation to understand very easily
How pleasant your voice is 😊 great teaching sir ji
Tq so much sir u helped me a lot aslau nenu deenikosam thala baddakottukunna but intha easy anukole
superb sir, very good explanation 👍👍, best wishes 🙂
Your explanation is easy to understand
sir .tq sir i not declared sir
Ask me whats best bout this video....his accent and to the point view...man proud to have individuals like you😀
#include
int main()
{
int n,n1=0,n2=1,i,c=5;
printf("%d\t%d\t",n1,n2);
for(i=2;i
It is
n1=n2
n2=n
and what if you input c=1😇
crystal clear explanation ! to the point ! hats off !
thank you so much sir.
your vedios are very helpful. keeo going.....
I guess in your program you have missed "i" trem in the int statement
Sir you are too good
Your simple manner makes it look so easy
Holy shit. I used Fibonacci series on elementary school to cheat on multiplication and didn't even know it.
Sir your teaching method is v good I m a big fan of you
Best teacher.Thank you so much sir💖💖💖😊😊😊
your explanation is very very very very...... good ......
technical interview questions: ruclips.net/p/PL8EZmTsQbFTmUDV8DBW5BXeKm0wQPdt9-
Thank you sir for this awesome short and easy logic❤
This is my prefered channel to understand c concepts thanks don't change the approach sir 👍👍👍👍
hank u so much... The way u r teaching is very easy to understand
Very nice explanation sir, thank you.
Thank you sir your perfect teacher 🙏🙏🙏🙏🙏🙏
some people are born to do specific things in life like Sachin for cricket, Messi for football and you as a teacher...
You are best and great teacher❣️❣️
your lectures are very beneficial sir thankyou so much sir
Sir why we print 'a' value
What is the use of that
Can i directly print the 'c 'value
Thanq sir....for making this type of videos....which are very understandable 👍☺️
Sir can you explain this question ones.
Write a code to print next to last words of a sentance.
Nice video. Understood the concept. But, you forgot to declare the integer I which you used in the for loop.
Perfect explanation .Thanks sir🙏
i
This is wrong.The print will be 1,1,1,1.Here is the fixed code:
#include
int main ()
{
int limit,a=0,b=1,c=0,i;
printf("Enter Limit:
");
scanf("%d",&limit);
i=0;
while (i
Awesome class, Thankyou sir🤗🤗
Your lectures are awesome sir!
Wonderful explanation sir, Thank you so much...
you are the best Mr srinivas sir
Sir after completing explanation onces show the full program so that we can revise
PRINT
with new tricks 2022.... 👇🏻
ruclips.net/video/K5RtZN36lYI/видео.html
Thanku sir 🙏this program are easy to understand and I expect same more program display I need to 🙏🙏
PRINT
with new tricks 2022.... 👇🏻
ruclips.net/video/K5RtZN36lYI/видео.html
Thanks a million times sir😊☺
I'm not getting expected result.
Expected series: 0,1,1,2,3,5....
Actual series: 0,1,2,3,5....
using above mentioned program.
Print value of b
Print value of c then you will get
Why you are using i=1,i
We use it in for loop
For ( condition, initialisation, increment/decrement)
Thanks bro, u keep it simple and direct to the point.
Your expalnation is easy to understand
Sir you print only the value of a so how will be the b value are executed ??
Tq sir it is so helpful😌
Explaining was understandable and awesome sir...
sir, first u declare the variable only 'a'
how 'b' will execute
rply me sir
first a=0,b=1
then the sum of them is c =1;
Then the value of b which is 1 is stored in a then c's value is stored in b
so there is no need for b's execution because of the assignment operator its value changes constantly.
Good explanation sirr 👏
Thanks sir🤴🙏🏻❤❤
Ultimate fantastic mind blowing
Thank you sir☺️☺️☺️☺️☺️😊😊
Thank you very much sir,I understood very well
clean explanation sir.... thank you
Sir urr not initialalize "i"
Then hw urr using loop by the hlp of i
Satyam Sindiri,
think about logic, initialization is very basic
#include
int main()
{
int n,a=0,b=1,c;
printf("Enter the Number: ");
scanf("%d",&n);
for(int i=1;i
Sir you doesn't declare the variable i
You are great sir 👍👍👍👍
Thank you so much sir .I learned the logic
Nice Explanation Sir 👍
Super and excellent teaching
Thank you sir, nice explanation!
but this code fails for higher values e.g. 656 in case of long long int in c++. how to solve this..?
Thank you so much sir.... helped me very much
Thnx to explaining perfectly....
Nice explanation sir!Keep Rocking....
"i" is undeclared
PLEASE answer below question
write a c program that create data structure that are larger than the amount of physical memory contained in their machine
Thank u sir .....ur explanation is really good.....
Wowowowowowowowo 😍 love from Goa thanks sir for your work
Nice teaching
MR. SIRINIVAS THANK YOU SO MUCH
Thank you so much sir
Sir...what is the initial value of i?0/1
Or it's just counting the iterations from 1 to 7
Thanks for easy explanation
There is No Deceleration of i variable ? How come you use it without declaring? It's seems that program is incorrect...
Your teaching super