C Language Tutorial for Beginners (With Notes + Surprise) 🔥

preview_player
Показать описание


Note: Scroll to the bottom of the page to download the Handbook

Timestamps ⌚
00:00:00 Story of CRK
00:04:37 Chapter 0
00:34:13 Chapter 1
01:08:25 Chapter 1 Practice Set
01:26:02 Chapter 2
01:56:42 Chapter 2 Practice Set
02:06:00 Chapter 3
02:48:29 Chapter 3 Practice Set
03:17:47 Chapter 4
04:07:00 Chapter 4 Practice Set
04:33:59 Project 1
04:46:49 Chapter 5
05:24:53 Chapter 5 Practice Set
05:48:10 Chapter 6
06:19:31 Chapter 6 Practice Set
06:36:47 Chapter 7
07:06:01 Chapter 7 Practice Set
07:32:48 Chapter 8
07:53:26 Chapter 8 Practice Set
08:13:17 Chapter 9
08:36:18 Chapter 9 Practice Set
09:02:06 Chapter 10
09:17:52 Chapter 10 Practice Set
09:30:52 Project 2
09:39:32 Chapter 11
09:52:57 Chapter 11 Practice Set
10:01:37 Conclusion

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

Whoever is watching this tutorial, I would tell them that you should not have any doubts in your mind because this is totally worth it.

subhamsharrma
Автор

34:18 VARIABLE, CONSTANTS AND KEYWORDS
1:26:04 INSTRUCTIONS AND OPERATORS
2:06:04 CONDITIONAL INSTRUCTIONS
3:17:49 LOOP CONTROL INSTRUCTIONS
4:46:52 FUNCTIONS AND RECURSION
5:48:12 POINTERS
6:36:49 ARRAYS
7:32:50 STRINGS
8:13:20 STRUCTURES
9:02:09 FILE I\O
9:39:35 DYNAMIC MEMORY ALLOCATION

arjansingh
Автор

we need people like u, who actually teach rather than giving infinite roadmaps👍

atrangichannel
Автор

excited to build my 1st project using C !

ramswaroopmohanty
Автор

2 years back I completed your old C language course C was my first programming language, and Today I got nostalgia After watching your new C course ... To the people who are watching this comment Trust me guys follow this course blindly defiantly that would be worth your time.

Coderovert
Автор

Today I was looking for a C tutorial video and I found your old C tutorial video and now I got your new video, what a coincidence 😅

Sbhm
Автор

My god the timing of this course is was searching for a C tutorial and was just starting to watch the old playlist but Harry Sir dropped the video on just the right time....Thank You Harry Sir!

pulkitsujaan
Автор

3 year back I started with same topic of your old video...best starting point proved to me.❤ All the best juniors who r stepping in this field.

Anonymous-imdy
Автор

Thank you so much sir ❤
This vedio is very HELPFUL❤❤❤❤

Sneha-jhuk
Автор

Thank you so much Harry Bhai 🙌🏻 this video is very helpful 😃🧡

wxvxvtg
Автор

Today's date is 17-07-2024. Mark this date. On 17-07-2026, I will return to comment on this video and share my success as a coder, all thanks to Harry Bhai.

snjmghz
Автор

You cameback with a bang. I was searching updated c programming language in depth guide . Then you came with this video man
U rock.

arindamdasgoogledeveloper
Автор

**For all the beginners**:-
At 2:05:40, If you put `int a =3.0+1` instead of `float a=3.0+1`, the answer you will get is 4 and not 4.0000 because of the type of variable a in the code. But as Harry specified here, it's always best practice to use float in such situations otherwise you'll be losing the value after decimal and Interviewer may fail you.

yujiitadori
Автор

Hey everyone! 🎉 Today marks the beginning of my journey to stay consistent with Code With Harry's C language course. 📚 I struggle with consistency, so I've decided to comment here every day to keep myself accountable and to motivate others. 💪

Chapter 0 Completed

Today is Day 1. Let's stay consistent and achieve our goals together!

_tyson._.x
Автор

~This Video is very helpful Harry Sir .
✨❤️

devanshmakwana
Автор

" i hold your hand " this touch my heart

MuhammedFarhanSyed
Автор

For my personal

39:21 coderunner extension
1:04:12 multi cursor functionality
1:05:59 escape sequence characters
1:09:51 ninja technique for boilercode snippet
1:29:50 Some Useful Info
1:52:04 Control+ Forward Slash shortcut for comment
1:55:25 Typecasting
2:10:49 Line Up-Down Shortcut
3:10:19 ASCII Value problem

manthanpatel
Автор

This video is very helpful for us harry sir .
You are my Role model

tamssugameing
Автор

00:08 Introduction to Functions in C
1:02:12 Understanding pointers in C language
2:37:18 Introduction to C language basics
3:28:25 Understanding basic syntax and input/output operations in C language.
4:56:14 Variables and Data Types
6:38:46 Importance of Pointers in C programming
8:12:01 Pointers are used to store memory addresses.
8:59:08 Introduction to Variables in C Programming

sayyedtaimoorshah
Автор

// Question: Calculate the area of a circle and modify the same program to calculate the volume of a cylinder given it's radious and hight:

// Hint_1: Area of the circle = 3.14 * radious * radious

//Hint_2: Volume of the cylinder = 3.14 * radious * radious * hight


#include <stdio.h>

int main()
{
int radious;
radious = 7;
int hight;
hight = 4;
printf("The area of circle with radious %d is %f\n", radious, 3.14 * radious * radious);
printf("The volume of cylinder with radious %d and hight %d is %f\n", radious, hight, 3.14 * radious * radious * hight);
return 0;
}

satyamsoni