Hope you like this video. I can't express in words the amount of time and effort it took to record this 11-hour long tutorial. The goal was to cover every topic and keep everything short and to the point as much as possible!
Commenting from Nigeria in 2022. I haven't gone far with the tutorial yet but, I want to say a big thank you!!. Your teaching style, humility, intellect, passion and energy is one of the best I've seen so far. I will definitely recommend to my friends. God bless.
1:09:15 Question 4 The answer is 24 sir #include int main() { //p*r*t/100 int p =100; int r = 6; int t =4; printf("The simple interest for a set of values representing principle is %d",p*r*t/100); }
1:09:58, The simple interest amount for 100 principal amount, 4 years and 6% interest rate is 24. Thanks for this nice course. The code is follows; #include int main() { int p; int t; float r; printf("Enter the value of principal amount "); scanf("%d", &p); printf("Enter the number of years "); scanf("%d", &t); printf("Enter the the interest rate "); scanf("%f", &r); printf("The interest amount is %f", (p*t*(r/100))); return(0); }
Harry brother, I was always afraid of coding, never been taught about coding the way you do. special love for you from bottom of my heart. your way of explaining is on another level and you also motivate along. Best tutor On Programming. now it feels like I can play with codes and stuff.. all credits to you
1:09:50 I got simple interest as 24.000000 1:38:03 #include int main() { int a,div; printf("Enter value of a:"); scanf("%d",&a); div=a%97; printf("answer is:%d",div); } I put input as 194 and answer is 0 2:21:45 #include int main() int phy, math, chem; printf("Enter Values: "); scanf("%d %d%d", &phy, &math, &chem); float avg (phy + math + chem) / 3; if (avg>= 90) printf("Your Grade is A!"); else if (avg < 90 && avg >= 80) printf("Your Grade is B!"); else if (avg < 80 && avg >= 70) printf("Your Grade is C!"); else if (avg < 70 && avg - 60) printf("Your Grade is D!"); else printf("Your Grade is FI"); return 0; } 3:56:02 at least once 7:31:20 yes 7:48:51 yes 8:52:06 a)gets 9:54:00 Arrays
1:41:01 #include int main() { int a; printf("enter the value of a "); scanf("%d",&a); printf("to check whether the number is divisible by 97 or not "); printf("%d",a%97==0); //if the output is 1 then the given number is divisible by 97 //if it returns 0 then it is not divisible by 97 return 0; }
I can confidently tell that this is a very underrated channel and obviously this video. Harry sir has put huge efforts in making this video + making handwritten notes which will give you a mind blowing startup in programming and make you a very good programmer in C language. Harry sir is the best. Completed the complete video and no doubt, I will recommend you to watch this video.
Questions which were to be commented : 1:09:40 // Calculate Simple Intrest #include int main() { int p; int t; int r; printf("Enter Principal Amount "); scanf("%d",&p); printf("Enter No. of years "); scanf("%d",&t); printf("Please Enter Rate of Interest "); scanf("%d",&r); printf("Total Intrest is equal to %d ", (p*r*t)/100); return 0; } 1:37:42 // Check if the number is divisible by 97 by taking input from the user #include int main() { int a; printf("Enter the number "); scanf("%d",&a); if (a%97==0) { printf("The number %d is divisible by 97 ",a); } else { printf("The number %d is not divisible by 97 ",a); } return 0; }
Timestamp :- 01.09.50 include int main() { int p,r,t; printf("Enter the value of P,R,T"); scanf("%d %d %d",&p,&r,&t); printf("the SI=%d",p*r*t/100); return 0; }
2:20:16, Quiz: Write a programme to find the grade of a student. Here below is the programme; #include int main() { float marks; printf("Enter your marks percentage "); scanf("%f", &marks); if (marks>100) { printf("The marks given is out of range"); } else if (marks>=90 && marks=80 && marks=70 && marks=60 && marks=0 && marks
hi Harry sir on the time stamp 4:11:10 the Q.11 code is FOR WHILE LOOP #include int main() { int i = 2, n = 5, isPrime = 1; while(i < n) { if(n%i == 0) { isPrime = 0; break; } i++; } if(isPrime){ printf("the number is prime "); } else{ printf("the number is not prime "); } return 0; } FOR DO-WHILE LOOP #include int main(){ int i = 2, n = 8, isPrime = 1; do{ if(n%i == 0) { isPrime = 0; break; } i++; }while(i < n); if(isPrime){ printf("the number is prime "); } else{ printf("the number is not prime "); } return 0; }
Hi Harry sir quick quiz on time stamp 3:32:00 the code is #include int main() { int n; printf("please enter the value of n: "); scanf("%d", &n); for (int i = 1; i
This is called hard work. To make tutorials in multiple languages and at the same time explain it in multiple languages... Boht hard! Keep it up! 🎉🎉🎉🎉🎉
@@vaibhav2517 bhai sirf practise karni ho toh online c compiler dalo chrome mein aur koi bhi compiler se shuru kar do programming. ye vscode ki filhal jarurat nhi h
hi harry sir I solved Q.3 on Tim stamp 1:37:47 the answer is #include int main(){ int a; printf("enter the number may or may not divisible by 97: "); scanf("%d", &a); printf("the remainder=%d", a%97); return(0); }
I just started learning and when i downloaded notes i realised this guy just gave me hand-written notes, example programs, practice tests, projects, etc for free. If we try to learn C offline by buying the course, what more can they give us than what he has given ? I have learnt C from a variety of platforms (free ones) and none has ever been this engaging. Thanks Harry and why hasn't he already hit 1 mil subs ? come on people, sub nd support him, he has put in a lot of effort.
This is the most straightforward lesson on C that I have encountered. The lessons and practice sets are the best for beginners to follow. Thank you for this. Currently on chapter 4.
I have to admit, you are the best teacher in India who devotes so much time for unknown students, who might know you but you don't know them, right! Also, Yes I have solved Q4 and the answer is 24.000000. timestamp - 01:09:54 Calculate Simple Interest #include int main(){ int P = 100; float R = 6; int T = 4; float si = (P*R*T)/100; printf("The Simple Interest is - %f", si); return 0; } timestamp - 1:38:14 Divisible by 97 or not #include int main(){ int a; printf("Enter a number "); scanf("%d",&a); printf("%d", a%97); return 0; }
Hi harry, 1:38:08 -: The program for question no. 3 is #include int main() { int a; printf("Enter a number ="); scanf("%d",&a); if(a%97==0){ printf("remainder = %d ",a%97); printf("This number is divisible by 97 "); } else{ printf("remainder = %d ",a%97); printf("Sorry,This number is not divisible by 97 "); } return 0; }
The hindi channel has this in 15hrs and this one has 11hrs. He is constantly improving videos so that we can learn more fastly. He also made the same python course in lesser hours
There will be some looking for shorter videos, others longer videos. It's a win for you if you love long videos. He also explains it well and does well to incorporate practice sets.
STANDING OVATION TO THIS GUY. I LEARNT C IN JUST ONE WEEK BY JUST FOLLOWING THIS VIDEO. THANK YOU SO MUCH HARRY BHAI. SO MUCH HARD WORK. YOU WILL BE A INSPIRATION TO DEVELOPERS
Hi .. Savitha... having read ur comment...can u plz help me solving my problem my gcc.exe file is not creating ....plz respond and help me ..I am very much interested in doing this course
3:24:20 challenge accepted I did it and it worked. I initialized i to 1 and incremented it using postfix and the while loop was less than or equal to 4 #include #include int main(void) { int i = 1; do { printf("%d ", i); i++; } while (i
first of all thx Harry bhiya for this course and I have solved question - 4 of chapter 1 ( 1:09:22 ) coming to the question if principle is 100 , number of years are 4 and rate of return is 6 then simple interest will be 24.00 please do like it , if it is correct 😊
5:02:05 The answer to this timestamp question is #include float multiply(float, float); int main(){ float n=2; printf("The force of the body exerted by the earth is %f", multiply(n, 9.8)); return 0; } float multiply(float n, float m){ return n * m; }
Harry you are a star!!! I started learning C with your video on 11th June and finished today 13th July....could have finished earlier but I am the type to soak in the lessons, practice sets. Thank you so much. Can't wait to delve into the Python video...Keep soaring and shinning the light to our path. 👍👍👍
@@ProgrammingWithHarry hello sir there some problem in minGW i have done whatever you have told in video but i am not getting (gcc.exe) could you plz help on this ???
@@aloksingh_3 Hi @alok pratap singh i am also facing the same issue. not able to run the code without (gcc.exe). Dear Sir @programmingWithHarry Kindly help me with this. Thank you.
Namaste Harry Brother.I don't understand Hindi that's why I follow this channel and it is really really helping me a lot for understanding concepts.I request you to please regularly post videos on this channel so that it would be helpful for people like me.Thank you very much.
1:09:33 Hello Harry Bhaiya I am 13 years old and your course is fantastic!! It is very easy to learn from you. I made program to calculate amount of simple interest as you told and I got an answer which is correct "24"!! Thanks Harry Bhaiya for teaching C programming in free!!
Am currently learning C through your this course but at first when I get started I couldn't believe it's free. Man am so grateful. May God be with you. Peace!
I'll go through the course as I have time, but I've already taken a peek to it and it seems so extensive and interactive which is important. This tutorial undoubtedly deserves more views than it already has and I wish it would get in the near future ! Thanks a lot.
@@jiyapatel2940 I am in 8th, I have just completed arrays chapter which is chapter 7 as a programming beginner I can feel that this course is gr8, worth checking out
timestamps - 1 - 1:38:04 // Author - Harsha Kota #include int main(){ int a; printf("Enter a number "); scanf("%d",&a); printf("Reminder is %d", a%5); return 0; } Array code : 6:53:21 - #include int main() { int a[10], i, n; printf("Enter the number students marks you want to enter "); scanf("%d", &n); printf("Enter the marks of the students "); for (i = 0; i < n; i++) scanf("%d", &a[i]); for (i = 0; i < n; i++) printf("Hence the Marks of %d student = %d ", i + 1, a[i]); }
Chapter 2 Practice set question 3 to calculate if a number is divisible by 97 by taking inputs from user 1:38:10 #include int main() { int a; scanf("%d", &a); printf("%d", a % 97); return 0; }
02:26:00 Sir here according to me, in (If else ) statement writing any non-zero number is acceptable. hence, if we get 11 the first if statement will turn out to be true.
Hi, Mr Harry. Thank you so much for this wonderful hands on activity tutorial, am currently in Chapter 7, but trust me i can bost that i know C programming to an extent. I'll try as much as i can to share this more views and likes to the best i can, because there tones of pals like me who need this. Thank you so much sir.
Answer for 1:38:14 is #include int main() { int a = a; printf("Enter the value of a "); scanf("%d", &a); printf("The remainder when a is divided by 97 is equal to %d", a%97); return(0); }
1:38:14 I have completed question number 3 in CH 2 exercise. This is the program: #include int main() { int n; printf("Enter your value "); scanf("%d", &n); printf("If the output is 0 your number is divisible by 97 and if not, it is not divisible by 97 and so your answer is %d", n%97); return 0; }
It requires so much effort and a big heart to provide these super amazing tutorials for free 😀😀❤️❤️ , ver much thanks sir 🙏😀❤️ Really appreciate your hard work 🙏
3:36:15 #include int main() { int num; printf("Enter the value of Natural number :"); scanf("%d",&num); for(int i =num; i>=1; i--) { printf("The value of i is %d ",i); } return 0; }
chap 2 q4: #include int main() { int user; scanf("%d",&user); // Test value if (user % 97 == 0) { printf("divisible"); } else { printf("not divisible"); } return 0; }
59:46 #include int main(){ int length,bredth,area; printf("Enter the length: "); scanf("%d",&length); printf("Enter the bredth: "); scanf("%d",&bredth); area=length*bredth; printf("The area of the rectangle is %d",area); return 0; }
Harry is just the best....evn paid course arent this good and well explained. I liked the video clips in between .gives me more visual idea abt the topic.tysm bro....
8:08:32 solution of 6th problem: #include int count(int arr[],int n) { int j=0; for(int i=0;i0) { ++j; } } return j; } int main() { int a[10],i; printf("Enter the numbers into the array "); for(i=0;i
2:25:45 Initially I also thought that a would not be 11 if look through the code quickly. Then I released that it would be 11 only as you used only single = not == Difference being that single = is for assignment & double == is for checking if a condition is true or false
01:09:46 Answer for your value is 24. Code is below // Take input from user and calculate S.I. #include int main () { int p, r, t; printf("Emter the principle = "); scanf("%d", &p); printf("Emter the rate = "); scanf("%d", &r); printf("Emter the time = "); scanf("%d", &t); printf("Thw simple interest of the entered value is = %d", (p*r*t)/100); return 0; }
1:38:21 #include int main(){ int a,b; printf("Enter the value of number whose divisibility is to be checked "); scanf("%d",&a); b =a%97; printf("%d",b); printf(" If remainder is 0 it is divisible otherwise it is not divisible"); return 0; }
YOU ARE A BOON TO ME ! Thanks much. Was literally looking all over the RUclips for a session like this which starts right from the scratch. God bless you! You will be my go to instructor for any kinda languages that i learn in future!
I watched both of your c language videos in one shot : hindi & English and it took me 10 days. Thank you Harry bhai now I can say that I also know c language.
6:38:46 #include int tenx(int); int main(){ int a=53; printf("The value before 10x is %d ", a); tenx(a); printf("The value after 10x is %d", tenx(a)); return 0; } int tenx(int a){ return (a*10); }
2:25:56 Here the output is a is 11 Since a=11 in if statement is not a comparision being done Rather it is making the if statement condition evaluates to True . For proper execution it should have been a==11
3:32 #include int main() { int N, i; // Input the value of N from the user printf("Enter the value of N: "); scanf("%d", &N); // Print the first N natural numbers printf("The first %d natural numbers are: ", N); for (i = 1; i
Very useful tutorial harry brother. Keep up the great work! Also I would request you please make some videos on real projects using C as you did with Python (Pygame, Tkinter, Django, Flask).
Time : 1:37:53 This is my answer of question 3 #include int main(){ float a; float b; printf("Enter the number "); scanf("%f", &a); printf("Enter your Divider "); scanf("%f", &b); printf("The answer for this will be %f", a/b); return 0; }
I have completed the question number 4 of practice set 1:09:48 #include //header files int main() // main function { int principle; int years; int interestRate; scanf("%d", &principle); scanf("%d", &years); scanf("%d", &interestRate); int SimpleInterest = (principle * interestRate * years)/100); printf("The Simple Interest is: %d", SimpleInterest); }
1:38:12 #include int main() { int a; int b; printf("Enter your number to check its divisiblity... "); scanf("%d", &a); printf("Enter the number by which you want to divide... "); scanf("%d", &b); printf("Your reminder is %d", a%b); return 0; }
Hope you like this video. I can't express in words the amount of time and effort it took to record this 11-hour long tutorial.
The goal was to cover every topic and keep everything short and to the point as much as possible!
Yes thank you for this course.
Damn helpful!!!
*_That was what I thinking_*
*_That harry bro is busy in witch one video course_*
*_We really appreciate you time, effort and hard word for us_*
Its good that you are focusing on your english channel..Waiting for react js in english..Thank u bro.
Welcome back to youtube Harry!!
Thank you harry, the answer to Chapter 1 - Practice Set: 00:56:40 is 24. Thanks a million.
Commenting from Nigeria in 2022. I haven't gone far with the tutorial yet but, I want to say a big thank you!!. Your teaching style, humility, intellect, passion and energy is one of the best I've seen so far. I will definitely recommend to my friends. God bless.
nigerians are very smart people
Damn
1:09:15
Question 4
The answer is 24 sir
#include
int main()
{
//p*r*t/100
int p =100;
int r = 6;
int t =4;
printf("The simple interest for a set of values representing principle is %d",p*r*t/100);
}
Crct bro 🤝
thanks sister .
@@vedacodesshe's a woman
1:09:58, The simple interest amount for 100 principal amount, 4 years and 6% interest rate is 24. Thanks for this nice course. The code is follows;
#include
int main()
{
int p;
int t;
float r;
printf("Enter the value of principal amount ");
scanf("%d", &p);
printf("Enter the number of years ");
scanf("%d", &t);
printf("Enter the the interest rate ");
scanf("%f", &r);
printf("The interest amount is %f", (p*t*(r/100)));
return(0);
}
3:32:02 Note it prints till n-1 nos in order to print n nos change the condition from i
stdlib ?
@@psharan5362Standard library
Harry brother, I was always afraid of coding, never been taught about coding the way you do. special love for you from bottom of my heart. your way of explaining is on another level and you also motivate along. Best tutor On Programming. now it feels like I can play with codes and stuff.. all credits to you
1:09:50 I got simple interest as 24.000000
1:38:03
#include
int main()
{
int a,div;
printf("Enter value of a:");
scanf("%d",&a);
div=a%97;
printf("answer is:%d",div);
}
I put input as 194 and answer is 0
2:21:45
#include
int main()
int phy, math, chem;
printf("Enter Values:
");
scanf("%d %d%d", &phy, &math, &chem);
float avg (phy + math + chem) / 3;
if (avg>= 90)
printf("Your Grade is A!");
else if (avg < 90 && avg >= 80)
printf("Your Grade is B!");
else if (avg < 80 && avg >= 70)
printf("Your Grade is C!");
else if (avg < 70 && avg - 60)
printf("Your Grade is D!");
else
printf("Your Grade is FI");
return 0;
}
3:56:02 at least once
7:31:20 yes
7:48:51 yes
8:52:06 a)gets
9:54:00 Arrays
1:41:01
#include
int main()
{ int a;
printf("enter the value of a
");
scanf("%d",&a);
printf("to check whether the number is divisible by 97 or not
");
printf("%d",a%97==0);
//if the output is 1 then the given number is divisible by 97
//if it returns 0 then it is not divisible by 97
return 0;
}
I can confidently tell that this is a very underrated channel and obviously this video. Harry sir has put huge efforts in making this video + making handwritten notes which will give you a mind blowing startup in programming and make you a very good programmer in C language. Harry sir is the best.
Completed the complete video and no doubt, I will recommend you to watch this video.
Can you send this notes in pdf
Gcc. Exe is not showing in my min gw how to solve this problem.
@@nitinraj5789same problem bro
Questions which were to be commented :
1:09:40
// Calculate Simple Intrest
#include
int main()
{
int p;
int t;
int r;
printf("Enter Principal Amount
");
scanf("%d",&p);
printf("Enter No. of years
");
scanf("%d",&t);
printf("Please Enter Rate of Interest
");
scanf("%d",&r);
printf("Total Intrest is equal to %d
", (p*r*t)/100);
return 0;
}
1:37:42
// Check if the number is divisible by 97 by taking input from the user
#include
int main()
{
int a;
printf("Enter the number
");
scanf("%d",&a);
if (a%97==0)
{
printf("The number %d is divisible by 97
",a);
}
else
{
printf("The number %d is not divisible by 97
",a);
}
return 0;
}
Timestamp :- 01.09.50
include
int main()
{
int p,r,t;
printf("Enter the value of P,R,T");
scanf("%d %d %d",&p,&r,&t);
printf("the SI=%d",p*r*t/100);
return 0;
}
2:52
@@apurvadhirde5888forgot to write # in include
OMG 11hr .
Thank you so much Harry bhai.
This is so much Helpful especially for
SOUTH INDIAN students.
🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻
Vi why for south Indian only?😮
@@ranjumondal3234 bro ....south India me kai logo ko hindi acche se smjh nehi aati... That's why it's helpful for them.
I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏
@@vaibhav2517 see edit path variable video of padhega india channel
Bro don't divide INDIAN as by telling SOUTH INDIAN:):)
2:20:16, Quiz: Write a programme to find the grade of a student. Here below is the programme;
#include
int main()
{
float marks;
printf("Enter your marks percentage ");
scanf("%f", &marks);
if (marks>100)
{
printf("The marks given is out of range");
}
else if (marks>=90 && marks=80 && marks=70 && marks=60 && marks=0 && marks
hi Harry sir on the time stamp 4:11:10
the Q.11 code is
FOR WHILE LOOP
#include
int main() {
int i = 2, n = 5, isPrime = 1;
while(i < n)
{
if(n%i == 0)
{
isPrime = 0;
break;
}
i++;
}
if(isPrime){
printf("the number is prime
");
}
else{
printf("the number is not prime
");
}
return 0;
}
FOR DO-WHILE LOOP
#include
int main(){
int i = 2, n = 8, isPrime = 1;
do{
if(n%i == 0)
{
isPrime = 0;
break;
}
i++;
}while(i < n);
if(isPrime){
printf("the number is prime
");
}
else{
printf("the number is not prime
");
}
return 0;
}
in the code while we are we using do-while loop it is not showing the output correctly
Hi Harry sir quick quiz on time stamp 3:32:00
the code is
#include
int main() {
int n;
printf("please enter the value of n:
");
scanf("%d", &n);
for (int i = 1; i
This is called hard work. To make tutorials in multiple languages and at the same time explain it in multiple languages... Boht hard! Keep it up! 🎉🎉🎉🎉🎉
I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏
@@vaibhav2517 CODE BLOCKS
@@vaibhav2517 bhai sirf practise karni ho toh online c compiler dalo chrome mein aur koi bhi compiler se shuru kar do programming. ye vscode ki filhal jarurat nhi h
Tqq sir
@@vinicharlie-jy3fyshe's a woman
hi harry sir I solved Q.3 on Tim stamp 1:37:47
the answer is
#include
int main(){
int a;
printf("enter the number may or may not divisible by 97:
");
scanf("%d", &a);
printf("the remainder=%d", a%97);
return(0);
}
I just started learning and when i downloaded notes i realised this guy just gave me hand-written notes, example programs, practice tests, projects, etc for free. If we try to learn C offline by buying the course, what more can they give us than what he has given ? I have learnt C from a variety of platforms (free ones) and none has ever been this engaging. Thanks Harry and why hasn't he already hit 1 mil subs ? come on people, sub nd support him, he has put in a lot of effort.
Where did you download that notes
This is the most straightforward lesson on C that I have encountered. The lessons and practice sets are the best for beginners to follow. Thank you for this. Currently on chapter 4.
Harry bhai is doing a lot of hard work, along with react course he did this also, bhai no words
I can't install mingw on my pc. Plzz tell any alternative. 🙏🙏🙏🙏🙏
@@vaibhav2517 watch aman dhattarwal video
@@vaibhav2517 bhai mere se bhi nhi horha tha but is video ka pura step follow kro hojayega
And also he made a same course in hindi too ❤
Learn python with me
ruclips.net/video/5lLkLi9SAlA/видео.html
hi Harry sir on the time stamp 3:59:41
the Q.6 code is
FOR DO-WHILE LOOP
#include
int main() {
int i=1;
int sum = 0;
do{
sum += i;
i++;
}while(i
I have to admit, you are the best teacher in India who devotes so much time for unknown students, who might know you but you don't know them, right! Also, Yes I have solved Q4 and the answer is 24.000000.
timestamp - 01:09:54
Calculate Simple Interest
#include
int main(){
int P = 100;
float R = 6;
int T = 4;
float si = (P*R*T)/100;
printf("The Simple Interest is - %f", si);
return 0;
}
timestamp - 1:38:14
Divisible by 97 or not
#include
int main(){
int a;
printf("Enter a number
");
scanf("%d",&a);
printf("%d", a%97);
return 0;
}
What was your remainder ? coz when i wrote this my remainder came out to be 78
@@biprojeetchaudhury9533 I don't remember now
Hi harry,
1:38:08 -: The program for question no. 3 is
#include
int main()
{
int a;
printf("Enter a number =");
scanf("%d",&a);
if(a%97==0){
printf("remainder = %d
",a%97);
printf("This number is divisible by 97
");
}
else{
printf("remainder = %d
",a%97);
printf("Sorry,This number is not divisible by 97
");
}
return 0;
}
The hindi channel has this in 15hrs and this one has 11hrs.
He is constantly improving videos so that we can learn more fastly.
He also made the same python course in lesser hours
Bro are these two same for a complete beginners who doesn't know C of code
Yes yes
I had this doubt about whether these two are same..?
Just searching for ur comment....
And finally happy to see this
@@punith6109 they are the same and have same concepts
"Fastly" that is a word🤔
There will be some looking for shorter videos, others longer videos. It's a win for you if you love long videos. He also explains it well and does well to incorporate practice sets.
❤ from Andhrapradesh
Hii this notes are cannot open please help me
Mee too bro
Me
@@Allu_arjun.07 Brother, it's .zip file. Extract zip file into file manager then you will find chapters in pdf format.
Bro suggest me a good laptop for btech in cse ai
STANDING OVATION TO THIS GUY. I LEARNT C IN JUST ONE WEEK BY JUST FOLLOWING THIS VIDEO. THANK YOU SO MUCH HARRY BHAI. SO MUCH HARD WORK. YOU WILL BE A INSPIRATION TO DEVELOPERS
Hi .. Savitha... having read ur comment...can u plz help me solving my problem my gcc.exe file is not creating ....plz respond and help me ..I am very much interested in doing this course
@@ushasunkari2724 😂 no reply
@@ushasunkari2724 sure I will help, did you find a solution, or are you still stuck?
@@CricketWithHarris brother how we can download the notes
@@CricketWithHarris Hello I didn't find my gcc.exe file. Help me plzz.
3:24:20 challenge accepted
I did it and it worked.
I initialized i to 1 and incremented it using postfix and the while loop was less than or equal to 4
#include
#include
int main(void)
{
int i = 1;
do
{
printf("%d
", i);
i++;
} while (i
but it says that Input should be 4 in the program...
03:31:54
#include
int main() {
int i;
printf("Enter the natural number upto which u want to print:
");
scanf("%d", &i);
for(i=1; i
Sir my first coding lecture starts from you!
The way your teaching is super and it makes me easy to learn C programming !👏
first of all thx Harry bhiya for this course
and I have solved question - 4 of chapter 1 ( 1:09:22 )
coming to the question
if principle is 100 , number of years are 4 and rate of return is 6 then simple interest will be 24.00
please do like it , if it is correct 😊
Yes broh i tried this when i complied the answer is an 24
Bro tell me how
01:09:52 the answer is 24. I have used the same concept as we used it in question no. 3
Anyone who passed class 12 this year
And which course
Hinduja, Bsc IT@@thanmaykandakuri2782
Hi here and another attendance
heloo gyzzz. this lecture seems very assuring tho. atb everybobyyy
Yes
5:02:05 The answer to this timestamp question is
#include
float multiply(float, float);
int main(){
float n=2;
printf("The force of the body exerted by the earth is %f", multiply(n, 9.8));
return 0;
}
float multiply(float n, float m){
return n * m;
}
Hindi mein tha ab English mein bhi. Hats off and kudos to Harry bhai ❤️❤️❤️
This C language course is amazing...✌
Can guarantee before completing it 😇
Harry you are a star!!! I started learning C with your video on 11th June and finished today 13th July....could have finished earlier but I am the type to soak in the lessons, practice sets. Thank you so much. Can't wait to delve into the Python video...Keep soaring and shinning the light to our path. 👍👍👍
Great job! Thanks for the appreciation ogundeko :)
@@ProgrammingWithHarry hello sir there some problem in minGW i have done whatever you have told in video but i am not getting (gcc.exe) could you plz help on this ???
@@aloksingh_3 Hi @alok pratap singh i am also facing the same issue. not able to run the code without (gcc.exe). Dear Sir @programmingWithHarry Kindly help me with this. Thank you.
Guys please explain why did he use " "||"instead of "&&" in 2:31:41
4:06:36
int i=1,factorial=1;
int n=5;
while(i
3:32:12 //Printing whole no. 0-10 using different loops :-
#include
int main()
{
//(1) while loop
int i=0;
while (i
04:01:24
Using do-while loop:
#include
int main()
{
int i=1;
int sum=0;
do{
sum=sum+i;
i++;
}while(i
Namaste Harry Brother.I don't understand Hindi that's why I follow this channel and it is really really helping me a lot for understanding concepts.I request you to please regularly post videos on this channel so that it would be helpful for people like me.Thank you very much.
2:22:00
#include
int main(){
char grade;
int marks;
printf("Enter marks obtained:");
scanf("%i",&marks);
if (marks>90){
grade = 'A';
}
else if(marks>80){
grade = 'B';
}
else if(marks>70){
grade = 'C';
}
else if(marks>60){
grade = 'D';
}
else{
grade = 'E';
}
printf("Your grade is %c",grade);
}
really this video is very very helpful.This helped me a lot for me in my 1st semester. thankyou
1:09:33
Hello Harry Bhaiya I am 13 years old and your course is fantastic!! It is very easy to learn from you.
I made program to calculate amount of simple interest as you told and I got an answer which is correct "24"!!
Thanks Harry Bhaiya for teaching C programming in free!!
haha
@@shiestynayak9711 for what ?
@@shiestynayak9711 a random kid lol
@@kookyyyyy7199 so?
@@lucifer_morningstar.. So what's Ur problem?
Am currently learning C through your this course but at first when I get started I couldn't believe it's free. Man am so grateful. May God be with you. Peace!
11 Hours
OMG! 😮😮
You are So HARDWORKING !!
Thanks for this course 😊😊
This helps ALOT 🙏🙏🙏
yes
4:06:38 answer
#include
int main(){
int factorial=1;
int n=0;
int i=1;
while (i
6:21:16
U explained pointers in damn good way Harry bro
No doubt in that
❤️ U a lot
1:38:03
#include
Int main()
{
Int a;
Printf("enter a value for a
");
Scanf("%d",&a);
Printf("%d",a%97);
Return 0;
}
I'll go through the course as I have time, but I've already taken a peek to it and it seems so extensive and interactive which is important. This tutorial undoubtedly deserves more views than it already has and I wish it would get in the near future ! Thanks a lot.
Have you seen?? Plss tell me your experience.. I'm in 11th clss can I do this
@@jiyapatel2940 I am in 8th, I have just completed arrays chapter which is chapter 7 as a programming beginner
I can feel that this course is gr8, worth checking out
Just completed this course on your other channel yesterday!
Thanks bro! 😊🙏🏻
Plss tell how was it?
timestamps -
1 - 1:38:04
// Author - Harsha Kota
#include
int main(){
int a;
printf("Enter a number
");
scanf("%d",&a);
printf("Reminder is %d", a%5);
return 0;
}
Array code : 6:53:21 -
#include
int main()
{
int a[10], i, n;
printf("Enter the number students marks you want to enter
");
scanf("%d", &n);
printf("Enter the marks of the students
");
for (i = 0; i < n; i++)
scanf("%d", &a[i]);
for (i = 0; i < n; i++)
printf("Hence the Marks of %d student = %d
", i + 1, a[i]);
}
4:06:33
ans of q no. 9
#include
int main()
{
int factorial = 1;
int i = 1;
int n = 6;
while (i
Chapter 2 Practice set question 3 to calculate if a number is divisible by 97 by taking inputs from user 1:38:10
#include
int main()
{
int a;
scanf("%d", &a);
printf("%d", a % 97);
return 0;
}
02:26:00
Sir here according to me, in (If else ) statement writing any non-zero number is acceptable. hence, if we get 11 the first if statement will turn out to be true.
= means assigning. == Meaning comparing
@@GAMIX7 Yeah...
Hi, Mr Harry. Thank you so much for this wonderful hands on activity tutorial, am currently in Chapter 7, but trust me i can bost that i know C programming to an extent. I'll try as much as i can to share this more views and likes to the best i can, because there tones of pals like me who need this. Thank you so much sir.
The best tutor for coding!! 🔥
Already watched your c tutorial in hindi, will be watching this one for revision.
This was really helpful...now what should i continue with after i have completed this tutorial...to go in depth.
Answer for 1:38:14 is
#include
int main()
{
int a = a;
printf("Enter the value of a
");
scanf("%d", &a);
printf("The remainder when a is divided by 97 is equal to %d", a%97);
return(0);
}
1:38:14 I have completed question number 3 in CH 2 exercise. This is the program:
#include
int main()
{
int n;
printf("Enter your value
");
scanf("%d", &n);
printf("If the output is 0 your number is divisible by 97 and if not, it is not divisible by 97 and so your answer is %d", n%97);
return 0;
}
It requires so much effort and a big heart to provide these super amazing tutorials for free 😀😀❤️❤️ , ver much thanks sir 🙏😀❤️
Really appreciate your hard work 🙏
Thank you so much for your efforts which you have done for all of us.
It's great feeling to have a teacher like you😊❤
Hii do u have the notes like I couldn't download the notes so could u pls help me with thag
3:36:15
#include
int main()
{
int num;
printf("Enter the value of Natural number :");
scanf("%d",&num);
for(int i =num; i>=1; i--)
{
printf("The value of i is %d
",i);
}
return 0;
}
3:23:56
#include
int main()
{
int input = 4;
int num = 1;
do
{
printf("output is %d
", num++);
} while (num
chap 2 q4:
#include
int main() {
int user;
scanf("%d",&user); // Test value
if (user % 97 == 0) {
printf("divisible");
} else {
printf("not divisible");
}
return 0;
}
59:46
#include
int main(){
int length,bredth,area;
printf("Enter the length: ");
scanf("%d",&length);
printf("Enter the bredth: ");
scanf("%d",&bredth);
area=length*bredth;
printf("The area of the rectangle is %d",area);
return 0;
}
Harry is just the best....evn paid course arent this good and well explained. I liked the video clips in between .gives me more visual idea abt the topic.tysm bro....
8:08:32 solution of 6th problem:
#include
int count(int arr[],int n)
{
int j=0;
for(int i=0;i0)
{
++j;
}
}
return j;
}
int main()
{
int a[10],i;
printf("Enter the numbers into the array
");
for(i=0;i
2:25:45 Initially I also thought that a would not be 11 if look through the code quickly. Then I released that it would be 11 only as you used only single = not ==
Difference being that single = is for assignment & double == is for checking if a condition is true or false
Thanks Buddy
1:37:56
user input divisible by 97
#include
int main ()
{
int n;
printf("enter a number:
");
scanf("%d",&n);
printf("%d",n%97);
return 0;
}
4:11:24 Functions n recursion
5:31:23 Pointers
8:24:23 Strings
9:05:10 Structures
6:41:38 Arrays
01:09:46
Answer for your value is 24. Code is below
// Take input from user and calculate S.I.
#include
int main ()
{
int p, r, t;
printf("Emter the principle =
");
scanf("%d", &p);
printf("Emter the rate =
");
scanf("%d", &r);
printf("Emter the time =
");
scanf("%d", &t);
printf("Thw simple interest of the entered value is = %d", (p*r*t)/100);
return 0;
}
God level Hard Work🙏
editing in the vedio with little bit of meme flex is just awesome!...actually
1:38:21 #include
int main(){
int a,b;
printf("Enter the value of number whose divisibility is to be checked
");
scanf("%d",&a);
b =a%97;
printf("%d",b);
printf("
If remainder is 0 it is divisible otherwise it is not divisible");
return 0;
}
YOU ARE A BOON TO ME ! Thanks much. Was literally looking all over the RUclips for a session like this which starts right from the scratch. God bless you! You will be my go to instructor for any kinda languages that i learn in future!
How to open the drive notes...its not opening
Your coursee + practicing with "let us C"=🔥🔥🔥🔥🔥
Are you using let us solution book for practice ?
2:25:57 (a=11) is wrong as '=' is used for assigning value, instead use (a==11) as '==' is used to equate.
This language course was much needed...thanks Harry sir❤️
Hello brother
In ENV édit thé bin file but gcc. Exe is not showing. Can you please help me
Harry bhai Zindabaad🥳🥳
Harry bhai rocks 🔥🔥🔥🔥🔥🔥🔥
I watched both of your c language videos in one shot : hindi & English and it took me 10 days.
Thank you Harry bhai now I can say that I also know c language.
We all are coder now
@@advancedworld4212 are these two same course
Are these two saem course
@@chakrabartisayantan4013 yess
This C Language course is very very much helpful!!
6:38:46
#include
int tenx(int);
int main(){
int a=53;
printf("The value before 10x is %d
", a);
tenx(a);
printf("The value after 10x is %d", tenx(a));
return 0;
}
int tenx(int a){
return (a*10);
}
2:25:56
Here the output is
a is 11
Since a=11 in if statement is not a comparision being done
Rather it is making the if statement condition evaluates to True .
For proper execution it should have been a==11
3:32
#include
int main() {
int N, i;
// Input the value of N from the user
printf("Enter the value of N: ");
scanf("%d", &N);
// Print the first N natural numbers
printf("The first %d natural numbers are:
", N);
for (i = 1; i
Bro salute to your dedication much much respect to your hard work keep doing the good work we are with you ❤
Very useful tutorial harry brother. Keep up the great work! Also I would request you please make some videos on real projects using C as you did with Python (Pygame, Tkinter, Django, Flask).
Time : 1:37:53
This is my answer of question 3
#include
int main(){
float a;
float b;
printf("Enter the number
");
scanf("%f", &a);
printf("Enter your Divider
");
scanf("%f", &b);
printf("The answer for this will be %f", a/b);
return 0;
}
1:38:07
#include
int main()
{
int num;
scanf("%d",&num);
printf("The reminder is: %d",num%97);
return 0;
}
3:24
int input;
int i = 1;
printf("type in the set limit: ");
scanf("%d", &input);
do{
printf("%d
", i);
i++;
}while (i
3:31
//For Loop
printf("type in the the n number of iterations: ");
scanf("%d", &input);
for(int i = 0; i
I have completed the question number 4 of practice set 1:09:48
#include //header files
int main() // main function
{
int principle;
int years;
int interestRate;
scanf("%d", &principle);
scanf("%d", &years);
scanf("%d", &interestRate);
int SimpleInterest = (principle * interestRate * years)/100);
printf("The Simple Interest is: %d", SimpleInterest);
}
Time stamp: 3:24:11
#include
int main ()
{
int i=1;
do
{
printf("the value of i is %d
",i);
i++;
} while (i
01:09
#include
int main()
{
//p=100, r=6%, t=4 years
int p=100;
int r=6;
int t=4;
printf("simple interest will be %d", p*r*t/100);
return 0;
}
Harry’s energy is unmatched! I came to see what this video was about and ended up writing code 3 hours in.
#include
int main() {
// Declare variables
float marks;
// Input marks from the user
printf("Enter the marks: ");
scanf("%f", &marks);
// Check and assign the grade
char grade;
if (marks >= 90.0 && marks = 80.0 && marks < 90.0) {
grade = 'B';
} else if (marks >= 70.0 && marks < 80.0) {
grade = 'C';
} else if (marks >= 60.0 && marks < 70.0) {
grade = 'D';
} else {
grade = 'F';
}
// Display the grade
printf("Grade: %c
", grade);
return 0;
}
3:24:13
int i,n;
Printf("enter the value n:");
Scanf("%d",&n);
Do
{
Printf("the value of i is %d
",i);
i++;
}while(i
1:38:12
#include
int main()
{
int a;
int b;
printf("Enter your number to check its divisiblity...
");
scanf("%d", &a);
printf("Enter the number by which you want to divide...
");
scanf("%d", &b);
printf("Your reminder is %d", a%b);
return 0;
}
thank you
4:00:00
#include
int main() {
int sum=0;
for (int i=1;i
3:59:50
#include
int main() {
int i=1,sum=0,n=10;
do{
sum= sum+i;
i++;
}while(i