Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Sir ivi chala simple examples.koncham difficult ga unnavi explain cheyandi like prime number or not ,add the digits of given input number, alternative digits , Counting the number of digits. E programs explain cheyandi sir for loop pai purthi clarity vachesthadhi.naku ardham avuthunnay sir kani logic build cheyalekunna 😌.
Hi Bro, idhi just Introduction maatrame, I already uploaded "Palindrome number or not", "prime number or not", "print n prime numbers", "Solve any pattern program easily" using loops, etc.. you can watch all C Programming videos here : m.th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
@@TeluguSoft ok sir but only using for loop annapudu madhya madhya lo if condition kuda use cheyyochu kadha alaa yela use chestharu Aa logics sariga ardham kavatledhu sir
Bro, oka easy example chepthanu : Oka roju lo nuvvu chese activities theesukundham, 1) Fresh up 2) tiffin 3) Journey 4) College 5) shopping 6) sleeping Ee six steps ni 7 times print cheyyali ante loops use chestham. 0 to 6 or 1 to 7 Indhulo tiffin intlo chesthunnava or bayata chesthunnava ani print cheyyalanuko, user nunchi input theesukuntam. For ex: Press 1 for home tiffin Press 2 for outside tiffin Ee value ni oka variable lo store chestham. 1 type chesam anukundham. tiffinChoice = 1 Ippudu if condition use chestham for loop lopala, okko roju tiffinChoice ni print cheyyadaniki as following: if(tiffinChoice == 1) { printf("Home Tiffin"); } else { printf("Outside Tiffin"); } Hope it is easy now.
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Thank You So Much for your Complement 😍 you can watch all C programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Thank You So Much for your complement 😍 you can watch all C programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
You are welcome ☺️ Thank you so much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Thank you so much for your compliment 😍 It means a lot to me 🤗 you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
You are welcome 😊 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Yem cheppalo theliyatledhu bro mee comment chusina tharvatha.. I am very happy that my video made you understand the "for loop" concept easily. You can learn C programming concepts in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
You are welcome ☺️ you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Thank You So Much 😍 It means a lot to me 🤗 you can watch all C Programming videos in Order here: m.th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Yes, I am explaining the theory part also. I request you to please watch videos one by one in order : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
@satyanandampalavai9303 sorry for the inconvenience, I will increase size in future videos. I already uploaded 83 videos. Hope in other videos you see big letters.
Hi, Nenu prathi program lo mundhu logic explain chesi, tharvatha program yela rayalo chepthunnanu.. Logic lo ne almost algorithm kuda cover avuthundhi.
Adhi for loop syntax. Manam programming language syntax follow avvali.. lekapothe error vasthundhi. You can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
No. If we give like this, then it will print wrong output. For example : if we give 5, then : n = 5, sum = 0 sum x 2 = 0 x 2 = 0 It will print zeros like this for n number of times. Tip : Whenever you think a logic, test it by writing the program and check the output. Then analyze the program step by step.
Inka konni topics vunnai bro.. inka 30 to 35 videos/programs. I will upload them as soon as possible. In the meantime, you can watch these videos one after the other and after watching write programs by your own.
@@HarshaHarsha-jf9tr manaki starting value and ending value thelusthundhi. Starting value yemo i = 0 Ala istham. Ending value kosam condition istham i < 10. Ippudu 0 nunchi 10 vypu increase cheyyali, so, i++ istham 1 value increase cheyyadaniki. 2 numbers increase cheyyali ante i = i + 2 ani istham. You also write programs by your own after watching the video, then you will write conditions easily.
#include #include void main() { int i = 1, n = 0; clrscr(); printf(“ Enter a Number ”); scanf(“%d”, &n); printf(“ Print %d numbers in sequence starting from 1 to %d”, n); do { printf(“%d”, i); i++; } while(i
Hi Bro, For example, if we give 5 as input, it will save in "n" variable. Next, it will print like this: "Print 5 numbers in sequence starting from 1 to 5" (bro small error here, you gave %d two times, so you must give two variables at the end or one variable two times) i value is 1, so it will print 1 and i vlue is incremented by 1 and becomes 2. Now it will check the condition i
You are welcome 😊 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Super explanation sir
Thank You So Much for your compliment 😍 It means a lot to me ☺️
Anna maa madam notes chepindhi kaane Naku ardhamkaledhu tharvatha nenu nee videos chuseka ardhamiendhi thank you so much
You are welcome 😊 you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Excellent explanation with examples.
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Super brother baga chepthunnaru
Sir chala baga chepthunnatu idi naku exam lo help avuthundi thank you
You are welcome ☺️ thank You So Much for your compliment 😍
Super explanation sir. Thank you
Sirrrr meeru chaala baaga chepparu I love u r teaching I subscribed ur channel
Thank You Soo Much for your compliment 😍 and Thank You for Subscribing 🤗
Tq sir for ur explanation
You are welcome 🤗 learn all c programming concepts here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Sir ivi chala simple examples.koncham difficult ga unnavi explain cheyandi like prime number or not ,add the digits of given input number, alternative digits , Counting the number of digits. E programs explain cheyandi sir for loop pai purthi clarity vachesthadhi.naku ardham avuthunnay sir kani logic build cheyalekunna 😌.
Hi Bro, idhi just Introduction maatrame, I already uploaded "Palindrome number or not", "prime number or not", "print n prime numbers", "Solve any pattern program easily" using loops, etc.. you can watch all C Programming videos here : m.th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
@@TeluguSoft ok sir but only using for loop annapudu madhya madhya lo if condition kuda use cheyyochu kadha alaa yela use chestharu Aa logics sariga ardham kavatledhu sir
Bro, oka easy example chepthanu :
Oka roju lo nuvvu chese activities theesukundham,
1) Fresh up
2) tiffin
3) Journey
4) College
5) shopping
6) sleeping
Ee six steps ni 7 times print cheyyali ante loops use chestham. 0 to 6 or 1 to 7
Indhulo tiffin intlo chesthunnava or bayata chesthunnava ani print cheyyalanuko, user nunchi input theesukuntam. For ex:
Press 1 for home tiffin
Press 2 for outside tiffin
Ee value ni oka variable lo store chestham. 1 type chesam anukundham.
tiffinChoice = 1
Ippudu if condition use chestham for loop lopala, okko roju tiffinChoice ni print cheyyadaniki as following:
if(tiffinChoice == 1)
{
printf("Home Tiffin");
}
else
{
printf("Outside Tiffin");
}
Hope it is easy now.
@@TeluguSoft yes ok sir thank you ❤️
@@lyricalbeats6161 you are welcome 😊 All the best for learning C Programming 👍
Super is a very small word sir
Thankyou soooooooo much
@@SaideepikaNeela you are welcome ☺️ you can watch all C Programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Super bro and voice is nice
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Tq bro u made it easy to me🫶
@@blackspygamer8500 you are welcome 🫶 you can watch all C Programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Good
Thank You 😍 you can watch all C Programming videos in order here: th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
good explanation bro!
Thank You Soo Much for your compliment 😍 it means a lot to me 🤗
Please share my videos to your friends
Thank You 😍
Bro nuv super bro nice explanation
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
broo gud explanation broo
Thank You So Much for your Complement 😍 you can watch all C programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
🎉🎉🎉🎉🎉 super anna
Thank You So Much for your complement 😍 you can watch all C programming videos one by one here : th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
Very clear
Thank You Soo Much 😍 It means a lot to me 🤗
Thanks sir chala Baga chebutunnaru
You are welcome ☺️ Thank you so much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
super anna nuvvu
Thank you so much for your compliment 😍 It means a lot to me 🤗 you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Anna nuv for sintax lo printf statement lo comma,sum ani rasaru ఒకసారి printf statement explain chy anna please ❤❤ 9:52
Hi Bro, please watch this video. You will get clarity. Video link : th-cam.com/video/ExpCgbr67hE/w-d-xo.html
Thank you anaa ilam ti video cheyyandi
You are welcome 😊 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Devudvi saami nuvu 🙏
Yem cheppalo theliyatledhu bro mee comment chusina tharvatha.. I am very happy that my video made you understand the "for loop" concept easily. You can learn C programming concepts in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
super explanation.tq
Thank You So Much for your compliment 😍 you are welcome ☺️
Excellent
Thank You So Much for your compliment 😍 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Super bro
Thank You 😍 you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Tq sir
You are welcome ☺️ you can watch all C Programming videos in order here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Nice explanation anna
Thank You So Much 😍 It means a lot to me 🤗 you can watch all C Programming videos in Order here: m.th-cam.com/play/PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS.html
C++ program kuda video chesi petti Anna.... Parts wise please 🙏
Sir mobile lo one good c program app ni suggetion chepadi sir.........
Coding C : play.google.com/store/apps/details?id=com.kvassyu.coding2.c
Super
Thank You 🤗
Bro c# vedio cheyandi bro
Anna theory part kuda cheppandi anna pls
Yes, I am explaining the theory part also. I request you to please watch videos one by one in order : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
Sir miru Coding ki eay applicaion use chestharu
@gauravganesh2007 Visual Studio Code. You can watch this video and setup for C programming : th-cam.com/video/XqA1VQYLOSo/w-d-xo.html
java eppudu start chestaru sir
Recent ga python programming videos start chesanu. Mundhu C topics and python topics upload cheyyali. Tharvatha Java. Meeru python videos ee link click chesi chudochu : th-cam.com/play/PLk5-4iI47C3Ubc6se1W_--K9I5yovNIvg.html
Anna letters big cheyyandi
@satyanandampalavai9303 sorry for the inconvenience, I will increase size in future videos. I already uploaded 83 videos. Hope in other videos you see big letters.
Java kuda unte pedathara?
Ledhandi, prasthutham Python programming language videos create chesthunnanu.
Algorithm cheppochu kadha sir all r explain ing how to write a program but before that we have to know how to write algorithm right?? #Btech kastalu
Hi, Nenu prathi program lo mundhu logic explain chesi, tharvatha program yela rayalo chepthunnanu.. Logic lo ne almost algorithm kuda cover avuthundhi.
Sir meru use software name chepindi sir❤
Visual Studio Code Software. You can also setup VS Code by watching this video : th-cam.com/video/XqA1VQYLOSo/w-d-xo.html
For block lo last na semikalom amduku petakudadu
Adhi for loop syntax. Manam programming language syntax follow avvali.. lekapothe error vasthundhi. You can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS
pf("%d" , sum*2) is this correct for sum of n even numbers ?
No. If we give like this, then it will print wrong output. For example : if we give 5, then :
n = 5, sum = 0
sum x 2 = 0 x 2 = 0
It will print zeros like this for n number of times.
Tip : Whenever you think a logic, test it by writing the program and check the output. Then analyze the program step by step.
Bro telegram channel vunte link pettu bro
Prasthutham ledhu bro.. Instagram link: instagram.com/TeluguSoft
Ok bro I will follow
👍
Mee 82 videos nerchukunte c programme vachesinattena bro
Inka konni topics vunnai bro.. inka 30 to 35 videos/programs. I will upload them as soon as possible. In the meantime, you can watch these videos one after the other and after watching write programs by your own.
Condition ala ralali sir
@@HarshaHarsha-jf9tr manaki starting value and ending value thelusthundhi. Starting value yemo i = 0 Ala istham. Ending value kosam condition istham i < 10. Ippudu 0 nunchi 10 vypu increase cheyyali, so, i++ istham 1 value increase cheyyadaniki. 2 numbers increase cheyyali ante i = i + 2 ani istham. You also write programs by your own after watching the video, then you will write conditions easily.
E for loop konchem confusion ga vundhi anna
Please watch complete video and write programs by your own. After practicing few programs, you will feel for loop very easy.
Chala chinnaga vunnay
@@satyanandampalavai9303 ivi just for loop execution flow easy ga ardham avvadaaniki
#include
#include
void main()
{
int i = 1, n = 0;
clrscr();
printf(“
Enter a Number ”);
scanf(“%d”, &n);
printf(“
Print %d numbers in sequence starting from 1 to %d”, n);
do
{
printf(“%d”, i);
i++;
} while(i
Hi Bro,
For example, if we give 5 as input, it will save in "n" variable.
Next, it will print like this:
"Print 5 numbers in sequence starting from 1 to 5" (bro small error here, you gave %d two times, so you must give two variables at the end or one variable two times)
i value is 1, so it will print 1 and i vlue is incremented by 1 and becomes 2.
Now it will check the condition i
Nice explanation 👍
Tq bro
You are welcome 😊 you can watch all C Programming videos one by one here : th-cam.com/users/playlist?app=desktop&list=PLk5-4iI47C3WmRO0tyFJ_BiBspsutqaeS