C Language Tutorial for Beginners (With Notes) 🔥

preview_player
Показать описание
C Tutorial + Complete C Language Notes in English: In this C Language Complete Tutorial, we are going to learn c language from scratch. This C language tutorial will cover everything you need to learn to master c programming. C programming is the best language to learn for beginners. In fact, most of the Compilers and JVMs are written in C.
TimeStamps:
Course Contents & Agenda: 00:00
Chapter 0 - Introduction to Programming: 00:02:19
Chapter 1 - Variables, Constants & Keywords: 00:07:28
Chapter 1 - Practice Set: 00:56:40
Chapter 2 - Instructions & Operators: 01:10:05
Chapter 2 - Practice Set: 01:32:10
Chapter 3 - Conditional Instructions: 01:42:26
Chapter 3 - Practice Set: 02:23:56
Chapter 4 - Loop Control Instructions: 02:58:54
Chapter 4 - Practice Set: 03:49:14
Chapter 5 - Functions & Recursions: 04:11:24
Chapter 5 - Practice Set: 04:54:36
Project 1 - Guess The Number: 05:20:34
Chapter 6 - Pointers: 05:31:23
Chapter 6 - Practice Set: 06:21:22
Chapter 7 - Arrays: 06:41:38
Chapter 7 - Practice Set: 07:45:35
Project 2 - Snake, Water, Gun: 08:14:41
Chapter 8 - Strings: 08:24:23
Chapter 8 - Practice Set: 08:51:44
Chapter 9 - Structures: 09:05:10
Chapter 9 - Practice Set: 09:48:28
Chapter 10 - File I/O: 09:59:42
Chapter 10 - Practice Set: 10:17:12
Chapter 11 - Dynamic Memory Allocation: 10:27:21
Chapter 11 - Practice Set: 10:45:45

Комментарии
Автор

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!

ProgrammingWithHarry
Автор

Thank you harry, the answer to Chapter 1 - Practice Set: 00:56:40 is 24. Thanks a million.

omazchannel
Автор

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

CricketWithHarris
Автор

OMG 11hr .
Thank you so much Harry bhai.
This is so much Helpful especially for
SOUTH INDIAN students.
🙏🏻🙏🏻🙏🏻🙏🏻🙏🏻

ashishrao
Автор

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.

aishatadedeji
Автор

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.

antoniokhan
Автор

Harry bhai is doing a lot of hard work, along with react course he did this also, bhai no words <3

devanshsinghparmar
Автор

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.

eze_uju
Автор

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.

ujwalj
Автор

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! 🎉🎉🎉🎉🎉

sreeramvavilala
Автор

Sir my first coding lecture starts from you!
The way your teaching is super and it makes me easy to learn C programming !👏

rameshmamidipaka
Автор

the way harry is delivering the context is Awesome!!!! I'm really thankfull to you harry!!

foreverything
Автор

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.

tekenateifranklyn
Автор

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<stdio.h>
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);
}

ziaurrahman-xrmm
Автор

Questions which were to be commented :
1:09:40
// Calculate Simple Intrest
#include <stdio.h>
int main()
{
int p;
int t;
int r;
printf("Enter Principal Amount \n");
scanf("%d", &p);
printf("Enter No. of years \n");
scanf("%d", &t);
printf("Please Enter Rate of Interest \n");
scanf("%d", &r);
printf("Total Intrest is equal to %d \n", (p*r*t)/100);
return 0;
}
1:37:42
// Check if the number is divisible by 97 by taking input from the user
#include <stdio.h>
int main()
{
int a;
printf("Enter the number \n");
scanf("%d", &a);
if (a%97==0)
{
printf("The number %d is divisible by 97\n", a);
}
else
{
printf("The number %d is not divisible by 97\n", a);
}

return 0;
}

targetjee
Автор

Hindi mein tha ab English mein bhi. Hats off and kudos to Harry bhai ❤️❤️❤️

dipankarbasak
Автор

Now I have been learning C with this video. I reached 3:30. So far its going smoothly and appreciate your hardwork and thanks a lot for this effort.

anandus
Автор

Hi harry,
1:38:08 -: The program for question no. 3 is

#include<stdio.h>
int main()
{
int a;
printf("Enter a number =");
scanf("%d", &a);

if(a%97==0){
printf("remainder = %d\n", a%97);
printf("This number is divisible by 97\n");
}
else{
printf("remainder = %d\n", a%97);
printf("Sorry, This number is not divisible by 97\n");
}
return 0;
}

harishanth.r
Автор

2:25:55 this is because assignment operator(=) is used inside the if condition and we know that any non zero integer value inside the condition will evaluate it to true that's why statement associated with the if condition is executed.

ambika
Автор

hi Harry sir on the time stamp 4:11:10
the Q.11 code is
FOR WHILE LOOP

#include <stdio.h>
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\n");
}
else{
printf("the number is not prime\n");
}

return 0;
}

FOR DO-WHILE LOOP
#include <stdio.h>
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\n");
}
else{
printf("the number is not prime\n");
}
return 0;
}

psyquber