Tremendous talent at taken higher concepts and explaining them is simple terms. Thank you, this is helping me to get a job by which I will feed, cloth and shelter my 10 children!!
Super explanation sir by ur explanation with simple english we are learning the subject wth english and explanation with examples gives a better clarity among the classes
I never realized for any other c language teaching vedios but I realized for ur teaching it is really amazing explanation to each and every point I can easily got it I am poor in computer but today I got a hope that I can crack the c language
I’ve struggled a lot with the else and else if statement only bc of our professor not telling us conditions are only written for if and else if not else statement...But You Sir cleared my confusions and thanks a lot for that 🙏🙏🙏
I'm very happy to watch this video. But I want Hindi language take to help everyone understands easily. But another your lecture is too good for me to remember old exams day.. Big Thanks } Sir
Hi Sandeep, big fan here, I've learned so much from you. I would like your advice on improving my basic calculator to calculate more than 2 numbers in one go. Will switch case be advisable here or what do you suggest? Sorry if my code is super amateurish, I just got started. Here we go: #include #include #include double squarE(double num); /**************************************** Start of Main *****************************************/ int main() { //Declare Variables double num; double cnums[100]; double ans; char oper;
//Get operator and 1st operand printf("Enter first number and operator: "); scanf("%lf %c", &num, &oper); /*printf("Enter first number: "); scanf("%lf", &num);*/ if (oper == 's') squarE(num); else //Get 2nd operand if applicable printf("Enter next number: "); scanf("%lf", &cnums[0]);
if (oper == '+') { ans = num + cnums[0]; printf("%f + %f = %f", num, cnums[0], ans); } else if (oper == '-') { ans = num - cnums[0]; printf("%f - %f = %f", num, cnums[0], ans); } else if (oper == '*') { ans = num * cnums[0]; printf("%f × %f = %f", num, cnums[0], ans); } else if (oper == '/') { ans = num / cnums[0]; printf("%f ÷ %f = %f", num, cnums[0], ans); } else if (oper == 'p') { ans = pow(num, cnums[0]); printf("%f to the power of %f = %f", num, cnums[0], ans); } else printf("Invalid Operator!");
return 0; } /***************************************** End of Main ****************************************/ double squarE(double num) { printf("The square root of %f is: %f", num, sqrt(num)); }
hi sahasrabuddhe Thanks for your interest towards our channel and share my sessions with your friends and keep following our channel and don't forget to subscribe to our channel.
I think in my life, this is one of the quality of time when I watched this video👍👌
hi uma
thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
@@sundeepsaradhi Ur doing a very good work thanks a lot
Thank you sir
Excellent teacher ..... Glad that i found such a wonderful teacher ❤❤
Sir, you have broke this down to a level where i could comprehend this. Thank you.
Tremendous talent at taken higher concepts and explaining them is simple terms. Thank you, this is helping me to get a job by which I will feed, cloth and shelter my 10 children!!
Super explanation sir by ur explanation with simple english we are learning the subject wth english and explanation with examples gives a better clarity among the classes
I think in my life, this is one of the quality of time when I watched this video👍👌 FOR AVERY ONE perfect explanation sir thank u very much SIR
I never realized for any other c language teaching vedios but I realized for ur teaching it is really amazing explanation to each and every point I can easily got it I am poor in computer but today I got a hope that I can crack the c language
Superb sir...... Easy way of teaching👌👌👌
Your teaching is really commendable sir ,it helps a lot 👍👍
Sir ur explanation is Very nice
I’ve struggled a lot with the else and else if statement only bc of our professor not telling us conditions are only written for if and else if not else statement...But You Sir cleared my confusions and thanks a lot for that 🙏🙏🙏
Thank you so much sir.. Great job 🤗excellent teaching 🔥
Great sir. Because of you this chapter looks so simple.
very nice lecture sir.Easily understandable language and crisp explanation.
Superb teaching sir👌u are really a great teacher 👍 very clear and precise... thank u🙏
Thanku you soo much sir. I understand very much. Actually....... Your teaching is also superb sir
Really ur teaching is very very helpful for me sir❤️❤️❤️
SIR Thank You . This video is one of the best video i have ever seen. You are just PREFECT.
Clearly explain sir.... Thank u soo much for your video...
Perfect explanation for me . Thank you sir... Wonderful teaching
Sir a big thanks to you... I just helped me to understand the basics of c
hi
thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.Keep following our channel.
U are the best teacher I have seen
It is easy to understand and thank you for teaching sir 😊
Thank you for explaining all of this in simple words sir
Ur teaching so simple sir and easy to understand 👍
Perfection lies in your teaching sir. Glad I've watched this video .
Hii
Sir teaches very well
Thank u so much sir.. It's A great explanation, It helps me a lot in my exam. tqsm.
Very very nice sir thanking u sir Inka makosam c language videos cheyandi sir plss ma lantii jobless persons ki. Use avthadii
Decision statement very simple explain and best teaching sir and next video upload
Best lecture we are enjoying sir
Thank you very much sir for that wonderful lecture.i have really understood all the concepts there
Really I'm thankful to you sir ji ,,😊 please do more examples 😊 thanks,,🤗🙏🙏🙏🙏
Thank you sir i was to depressed about this topic my mid exams are in two days now i can easily go and do it very well thank you so much.
Excellent explanation sir 🙏🙏
Superb class.👍👍👌👌
Sir.. you are the best ❤❤❤
Awesome explanation sir 🥳
Thanks sir .your lessons are very useful to me.
Sir u r so very intelligent... Keep going on😊
I understand better than my faculty, thank you sir
hi saiteja
thanks for your interest towards our channel and watching my sessions.
Thank u so much sir.your videos are very helpful...
Super sir very neat explain 🥳
Thank you so mach sir your videos help me a lot.... 😍
Nice explanation sir ❤️❤️
Sir thanks for you as support student
Very nyc sir thnqqq sooo much for lovely teaching 👌🙏🙏
Thank you sir.......... ☺.. I understand all because of you ☺
Great teaching sir....
Understood very well 😀 thank you sir
you're a very good teacher sir. thank you very much for these videos.
simple and wonderful class😇😇...thnq so much sir
I'm very happy to watch this video. But I want Hindi language take to help everyone understands easily.
But another your lecture is too good for me to remember old exams day..
Big Thanks } Sir
Best teaching on youtube!!
Hi Sandeep, big fan here, I've learned so much from you.
I would like your advice on improving my basic calculator to calculate more than 2 numbers in one go. Will switch case be advisable here or what do you suggest?
Sorry if my code is super amateurish, I just got started.
Here we go:
#include
#include
#include
double squarE(double num);
/****************************************
Start of Main
*****************************************/
int main()
{
//Declare Variables
double num;
double cnums[100];
double ans;
char oper;
//Get operator and 1st operand
printf("Enter first number and operator: ");
scanf("%lf %c", &num, &oper);
/*printf("Enter first number: ");
scanf("%lf", &num);*/
if (oper == 's')
squarE(num);
else
//Get 2nd operand if applicable
printf("Enter next number: ");
scanf("%lf", &cnums[0]);
if (oper == '+')
{
ans = num + cnums[0];
printf("%f + %f = %f", num, cnums[0], ans);
}
else if (oper == '-')
{
ans = num - cnums[0];
printf("%f - %f = %f", num, cnums[0], ans);
}
else if (oper == '*')
{
ans = num * cnums[0];
printf("%f × %f = %f", num, cnums[0], ans);
}
else if (oper == '/')
{
ans = num / cnums[0];
printf("%f ÷ %f = %f", num, cnums[0], ans);
}
else if (oper == 'p')
{
ans = pow(num, cnums[0]);
printf("%f to the power of %f = %f", num, cnums[0], ans);
}
else
printf("Invalid Operator!");
return 0;
}
/*****************************************
End of Main
****************************************/
double squarE(double num)
{
printf("The square root of %f is: %f", num, sqrt(num));
}
Amazing explanation sir
Very clear understanding👌👌👌
Thanks a lot sir well explained 👍👌
Excellent class sir
thanks sir very much i have got all the IF statements .....
Super sir ennakku nalla puriyuthu sir thank you sir
Well explained❤️
Thanks it was very helpful
Thank u so much ..it's awesome....👌👌👌👌
Very very very useful vedio
You are an excellent teacher - thank you!
Sir I have one doubt why do we use %d
What is meant by %d plz reply and thanks a lot for your wonderful explanation
Such a nice class❤️
Very good video sir I LIKE IT :-) :-)
hi vmm vines
thanks for watching my sessions and supporting our channel.
Tq sir i will understand this topic
Tq sir.....fr keeping ur valuble time fr us
Thank you sir .good for explanation sir
Sir=GOD
Sir we can use break...??? To come out of it
tnx sir...it's my dream to learn programming
Easy to understand thank u
Excellent speech sir ..
Hi SAI KRISHNA TEJA thank you
Excellent teaching sir
Super.........
Sir how to find in question we should write if elese Or simple if
Superrrrrrrrrrrrrrrrrrrrrrrrrrrr sir
Sir one doubt,u will explain quadratic expression programme or many programs
Sir ur lecture is nice...but I didn't get that what is the difference between the simple if ND if else.... Plz can u xplain?????
Keep it up sir
Thank you Sir!
Nested if is not conditional statement?
nice teaching
great job
I understand 100% sir amazing
Wow superb ladder statement
Sir u may arrange ur video at series form for viewers convenience ,,, thanks ,,,👍
Awsome faculity sir 👏 super sit
hi anudeep
thanks for your interest towards our channel and share my sessions with your friends and subscribe to our channel.
Is it not possible to use nested if insteaf of else if
Thank you for all your help sir
Thank you so much sir you are a gem ❤️
Very helpful sir
Can we write %i instead of %d
Very nice sir thanks aloy
Very nice. Thank you sir
hi sahasrabuddhe
Thanks for your interest towards our channel and share my sessions with your friends and keep following our channel and don't forget to subscribe to our channel.
Sir can you make the videos for loop structures ..??
Superb