Linus Torvalds "Nothing better than C"

  Рет қаралды 1,408,554

RunTime Recruitment

RunTime Recruitment

Күн бұрын

Creator of Linux Linus Torvalds explains why there is no language he knows of that's better than C for writing optimized code.
runtimerec.com
jobs.runtimere...
#embeddedrecruiter

Пікірлер: 2 500
@gz6963
@gz6963 3 жыл бұрын
Even Beethoven wrote his Symphony in C
@kattihatt
@kattihatt 3 жыл бұрын
I heard the bible was written in C, before it was compiled to english.
@ruxandy
@ruxandy 3 жыл бұрын
@@kattihatt You didn't really get the joke, did ya? :-)
@kattihatt
@kattihatt 3 жыл бұрын
@@ruxandy lol actually not. Atleast not completely.
@aleksybalazinski
@aleksybalazinski 3 жыл бұрын
@@kattihatt famous symphony no. 5 is written in *C* minor key
@kelvinxg6754
@kelvinxg6754 3 жыл бұрын
lmao good joke
@mayankmathur3257
@mayankmathur3257 4 жыл бұрын
I got a C in math,and thats something my parents care about
@juanok2775
@juanok2775 4 жыл бұрын
Lol
@b213videoz
@b213videoz 4 жыл бұрын
You should've got C++ and your parents would have been happier
@juanok2775
@juanok2775 4 жыл бұрын
@@b213videoz doubt it, cpp is for the proctologist
@yuntaozhang666
@yuntaozhang666 4 жыл бұрын
You are so funny
@satmastersatmaster4066
@satmastersatmaster4066 4 жыл бұрын
Congrad! you got good responsible parents
@lorenzrosenthal119
@lorenzrosenthal119 2 жыл бұрын
Programming in C in my university courses was like driving a fast car with no airbag on the high way. It felt dangerous, fast and fun!
@runtimeshorts9577
@runtimeshorts9577 2 жыл бұрын
Love the analogy Lorenz
@fabio.1
@fabio.1 Жыл бұрын
😊
@michal3141
@michal3141 Жыл бұрын
C was maybe fun in 70's These days C sucks compared to majority of programming languages. Maybe not compared to Java because Java sucks even more.
@michal3141
@michal3141 Жыл бұрын
@AL Don't get me wrong. C is a great language for doing low-level stuff and when performance really matters. Still my experience with C is that it is not exactly fun. For fun and 95% of applications I would rather go with Python than C.
@studybuddy7060
@studybuddy7060 Жыл бұрын
C is a skill rather than just another programming language at this point. C doesn't need to prove its worth any more.
@dmn3floyd659
@dmn3floyd659 4 жыл бұрын
My embedded systems professor once said, " I know assembly better than English".
@grandmastergyorogyoro532
@grandmastergyorogyoro532 4 жыл бұрын
Pls say hello to your professor for me.
@peesicle
@peesicle 4 жыл бұрын
My grandma is lit
@joel230182
@joel230182 4 жыл бұрын
allow me to doubt it
@Gooberpatrol66
@Gooberpatrol66 4 жыл бұрын
Was English his native language?
@BuzzKirill3D
@BuzzKirill3D 4 жыл бұрын
Your embedded systems professor... if you don't mind my asking, what do you major in and what university?
@rodholseth6354
@rodholseth6354 3 жыл бұрын
C was the first language I mastered, and it made it very easy to jump to Java, C++, C# and even x86. Even with no object orientation, it helps build a strong foundation.
@oODomeeOo
@oODomeeOo 3 жыл бұрын
I learned C very early with microcontrollers. Additionally learned C++ which was an easy transition. Though learning to program object oriented when you were programming procedural for years was hard. But going to high level languages like C# or Java is a pain. I have real trust issues to shift my freedom of memory access towards the interpreter. Also to have just a library for everything and just use them is hard, when I don't know whats happening in the background. I just feel disconnected from the computer. So I try to stay away from those and keep programming near the hardware. :)
@letsthink8245
@letsthink8245 3 жыл бұрын
@@oODomeeOo What kind of projects do you do recently or currently
@tismanasou
@tismanasou 3 жыл бұрын
u better leave C and start writing full assembly. I love writing 1000 lines of code so as to program a simple for loop
@rodholseth6354
@rodholseth6354 3 жыл бұрын
​@@tismanasou Assembly is very good to know as it teaches about the machine. But I wouldn't say it's very useful in this day and age. But each to his own.
@tismanasou
@tismanasou 3 жыл бұрын
@@rodholseth6354 No dude, assembly all the way, I sometimes write in 8085 instruction set for that extra vintage vibe
@DaSnipy
@DaSnipy 5 жыл бұрын
When I read C code, I know what Assembly language will look like and thats something that I care about ... LEGENDARY !
@aziz9488
@aziz9488 5 жыл бұрын
Wait you don't ?
@slackerengi2401
@slackerengi2401 5 жыл бұрын
Brian Kernighan really knew what he was doing Unix and C despite trying to be replaced multiple times since their invention are still the gold standerd
@iskomaxmin
@iskomaxmin 4 жыл бұрын
me : What the hell is Assembly Language!!! 😆😆😆
@NiekNooijens
@NiekNooijens 4 жыл бұрын
oh i also know in c++ how the assembly looks like, but to be honest, you want to stay away from there! for example: 2 classes with inheritance will basically create tables of function pointers and based on which constructor function is called this "virtual method table" or VMT will be filled with different jumps to different places of or code... and i'm not even speaking about the memory layout....
@TheEVEInspiration
@TheEVEInspiration 4 жыл бұрын
​@@NiekNooijens You can know it for even higher level languages than C++, in the end its having the understanding of how things really work that is important, no matter where you code in. Its good if you think of the costs when opting to use virtual functions and then reason about it if its really needed or acceptable to pay the cost. The problem with C++ and OO languages however is that as the abstractions accumulate, poor choices get cemented in and become the foundation for a new round of code. Choices once made, are hard to revert as everything is knotted together. Sure the code is abstracted, but that hardly matters as everything is still tied on the interface and architectural level. Its a code oriented approach and that is why OO is a scam and a dead-end approach to software development. Programming is about data, not code, so unless job security is the primary goal, stay away from OO or use it in only limited fashion as a tool to organize large domain blocks.
@DJ_Force
@DJ_Force 3 жыл бұрын
I love C. I used to write C. I would give almost anything to find another C coding job. Seems like no one writes code anymore, they just glue together frameworks.
@alefratat4018
@alefratat4018 3 жыл бұрын
Yeah, so true. SW in 2020: we need to implement one function that could be done in 50 lines of C but instead let's use some gigantic frameworks with a ton of dependencies and then hide the mess into a trendy container for deployment.
@mmaranta785
@mmaranta785 3 жыл бұрын
You can in the embedded world
@DJ_Force
@DJ_Force 3 жыл бұрын
@@mmaranta785 True, but embedded systems jobs seem few and far between. Seems like 99% of developers are connecting databases to browsers.
@melvinthomas8527
@melvinthomas8527 2 жыл бұрын
Some of us still do embedded. Sometimes I do miss features of modern languages; only thing in C is that you have to be mindful of the issues you can cause. Rust is a great iteration for a system language you get documentation, unit-testing, direct memory access.
@DJ_Force
@DJ_Force 2 жыл бұрын
@@melvinthomas8527 I did a bit of C++, and I did missed reflection. However, when I went back to C#, I missed a lot more.
@shinej11
@shinej11 4 жыл бұрын
You don't have to use, 'nothing better than C' click bait. Just use Linus Torvalds anywhere in the title and you'll be fine.
@fredflintstone8048
@fredflintstone8048 2 жыл бұрын
Yes, and he's saying it's the lang he prefers for doing the type of work he enjoys doing. It's not the best language for everything.
@shinej11
@shinej11 2 жыл бұрын
@@fredflintstone8048 that's what a click bait is. The title says something else than what the actual message in the video is
@fredflintstone8048
@fredflintstone8048 2 жыл бұрын
@@shinej11 Yes, I do know what click bait is. I'm not sure why you would assume that I don't.
@shinej11
@shinej11 2 жыл бұрын
@@fredflintstone8048 oh of course you know, I can C that
@saudude2174
@saudude2174 2 жыл бұрын
@@fredflintstone8048 it's not just the language he prefers for writing OS. It is objectively the right tool for this type of work. The whole rant teenagers tend to have around here about which language is the best is just silly. Everyone who actually works in this industry knows you always pick the right tool for the job. In the end, it doesn't matter what language you're using, if you're a crappy programmer, you'll make a mess of nearly everything.
@ronfarmery
@ronfarmery 2 жыл бұрын
Wrote my first C program in 1978. It was written on a Datapoint computer using an unofficial C compiler written by Mike Green who used to work at Datapoint. When the IBM PC came to life, I wrote many communications program in C (using the Lattice C compiler). Wonderful language (and I’ve learnt over 30 languages since I started in ICT in 1967).
@ko-Daegu
@ko-Daegu 2 жыл бұрын
You have been coding more than I have been alive insane But today with C I can’t find any job I got no chance against giants who have been writing for decades So I gotta go with python or JS 😢
@ricknash3055
@ricknash3055 2 жыл бұрын
Kernighan and Ritchie's definitive 'The C Programming Language' 1st edition was published in 1978. You must have been programming in C as it was borne?
@ronfarmery
@ronfarmery 2 жыл бұрын
@@ricknash3055 Yes. C was created in the early seventies; the book was the "official" bible on how to write programs in C. I bought it immediately. I was lucky enough to be given a beta of a C compiler written by a person (Mike G.) who worked for a computer manufacturer located in Texas (this was a personal work by Mike, it was never released). I started playing around with it and immediately liked this language. I already had experience with more than half a dozen other languages but nothing was even close to what I imagined I could do with C. In the end, it became my main language to write hundreds and hundreds of programs, from applications to utilities. I even wrote complete data communications programs like emulators and comms servers in C. I could not have done this without C and the various compilers created by some very good companies and persons.
@goedeck1
@goedeck1 2 жыл бұрын
Sir, I read K and R but had the question how to provoke EOF in say putchar getchar programs? You can't type eof because getchar will see it as ' e'. I thought of prompting the user to type a selected char that then you define as -1, then ask the user whether they want to end the string or use the char.
@ronfarmery
@ronfarmery 2 жыл бұрын
@@goedeck1 Run a simple test loop... #include int main (void) { int c; do { c = getchar(); } while (c != EOF); printf (" End "); } The compile and run it. Type some characters, then do Ctrl+D. See the result. Run again, type some characters, then do Ctrl+Z. So, no need to checking for characters but note the difference between Ctrl+D (program continues to run and prints the end message) and Ctrl+Z.
@mazinmustafa9869
@mazinmustafa9869 2 жыл бұрын
C language is simple, clean, efficient, fast, and just flexible enough to express any idea you have in mind. That is the beauty of C.
@DavidsKanal
@DavidsKanal 2 жыл бұрын
@@Wariowa345 Literally thought the same lmao, W
@aeebeecee3737
@aeebeecee3737 Жыл бұрын
yes, agree
@upendownlinker
@upendownlinker Жыл бұрын
No its not, it doesn't even a build in ability to make high order routines or data structures. You need to hack around with macros or go trough the burden of implementing your own generic types, all of which just leads to you making your own esoteric programming language on top of c, wasting time that would have spend better programming in a language that has those features build in aka c++.
@MundodasGuitarras
@MundodasGuitarras Жыл бұрын
C is not simple, is definitely not clean, it's not efficient cuz it takes dozens of line for something that could be done in half with languages and it takes much longer because of debugging
@bluesteel1
@bluesteel1 Жыл бұрын
Everything is fine till there's a segfault or memory leak in an enterprise codebase
@davidjohnston4240
@davidjohnston4240 3 жыл бұрын
After 40 years of programming, I can confirm that he is correct.
@johnc3403
@johnc3403 2 жыл бұрын
Well said.
@aadarshkumarshah8795
@aadarshkumarshah8795 2 жыл бұрын
@@johnc3403 hi C
@369seeker9
@369seeker9 2 жыл бұрын
would you say Rust is becoming a contender to C now? Perhaps not designing operating systems but you can at least write performative hardware apps.
@vladlu6362
@vladlu6362 2 жыл бұрын
@@369seeker9 There is a whole OS written in rust though, very performance as well, although very limited
@borise4104
@borise4104 2 жыл бұрын
Did you saw Zig programming language?
@axolet
@axolet 3 жыл бұрын
"Nothing better than C" *TempleOS and HolyC enters the battlefield*
@mujtabahussain7015
@mujtabahussain7015 3 жыл бұрын
that's only for true god worshipers, normal people won't understand that.
@equinox2584
@equinox2584 3 жыл бұрын
Holy C is the only language what are you talking about sir?
@dmitryhetman1509
@dmitryhetman1509 3 жыл бұрын
But holy C if only for whitest of the white christians
@qvindicator
@qvindicator 3 жыл бұрын
Holy C was created with divine intellect, which is a component Linus Torvalds lacks. This is due to the fact that Linus failed to write his own compiler that compiles just in time and ahead of time, and instead resorted to porting GCC. Linus wouldn’t understand
@newfaith912
@newfaith912 3 жыл бұрын
man those glowing things got him :(
@JagjotSingh
@JagjotSingh 4 жыл бұрын
The title does not justify what he said. He’s talking in terms of hardware and low level programming.
@bai7uo
@bai7uo 4 жыл бұрын
Ever heard of a term "clickbait"?
@ShaferHart
@ShaferHart 4 жыл бұрын
Yeah but it's always good to hear from the man
@vitaliykondrenko742
@vitaliykondrenko742 4 жыл бұрын
tbh, it's clearly told in Torvalds biography... The man working only with kernel that literally interact with hardware (at least with Linux, but probably in Git either)
@orangeshoes
@orangeshoes 4 жыл бұрын
@@ShaferHart true
@isimvol
@isimvol 4 жыл бұрын
We clicked though
@efa666
@efa666 4 жыл бұрын
C is for cookie, that's good enough for me.
@Deschutron
@Deschutron 4 жыл бұрын
As far as I'm concerned, you've won this comment section.
@MarkRose1337
@MarkRose1337 4 жыл бұрын
Oh cookie cookie cookie starts with C
@BigSavageG
@BigSavageG 4 жыл бұрын
C stands for Cuchi
@bobamazon2094
@bobamazon2094 4 жыл бұрын
But is it soootable?
@efa666
@efa666 4 жыл бұрын
@@nu11ptr increment the cookies
@tobiasdg3yev161
@tobiasdg3yev161 3 жыл бұрын
When I was younger (in the early 90s) and wanted to start coding on my 386, I asked my father who at this point has been in software development for over 30 years (IBM 1401,360/370): "Dad, what language should I start with?" He told me: "Start with assembler to understand how the machine really works. After that, you can continue with C/C++ or whatever you prefer." I followed this advice and ended up as embedded system dev, working on ARM Cortex currently. And I'm still using C/C++ and asm for some DSP routines.
@lanceharvie
@lanceharvie 3 жыл бұрын
Having written assembler and being and embedded engineer you deeply know the sentiment of what is being said here.
@warrenbuckley3267
@warrenbuckley3267 3 жыл бұрын
Have you had a chance to dabble in any Rust?
@nesa6582
@nesa6582 2 жыл бұрын
You are self thought?
@satoshinakamoto7253
@satoshinakamoto7253 2 жыл бұрын
@@nesa6582 many great programmers are self taught and math / physics majors
@GospodinLLIoTaKe
@GospodinLLIoTaKe 2 жыл бұрын
@@satoshinakamoto7253 I'm self taught but my dad isn't a programmer, because of this I started my programmer's path as webdev at 19yo
@jklax
@jklax 4 жыл бұрын
I learned C\C++ before anything else. Was a good starting point for me and springboard.
@norpriest521
@norpriest521 4 жыл бұрын
What are the references C vs C++ vs C# ?
@Mauro0
@Mauro0 4 жыл бұрын
@@norpriest521 c : low level language, close to hardware, great for memory management, OS, hardware. C++: medium level language, takes some C features, but it's object oriented. C sharp(#) : high level language, object oriented like Java. They dont compile into machine code.
@-_--ex5lt
@-_--ex5lt 4 жыл бұрын
@@norpriest521 He said enough but for learning C# you need to sell your soul to Microsoft.
@mycrushisachicken
@mycrushisachicken 4 жыл бұрын
MR MEME "assembly is low level language? please tell me you're joking, binary is low level, assembly is middle level, but assembly is lower level than C, both C and C++ are high level, C# is ultra high lvl" kappa
@mikhail5002
@mikhail5002 4 жыл бұрын
hahaha these comments are awsome
@user-lv6qm3fj2z
@user-lv6qm3fj2z 3 жыл бұрын
He's so right. Nowadays people tend to just completely ignore of how optimized and efficient the code is, despite the fact that the speed increase of modern computers is decreasing with each generation. People write unoptimized code and think it's okay. In 90-s we thought with the computers getting faster and faster we will get applications that will do stuff for us so much faster and instead we get a bunch of unoptimized code that barely matches the speed of applications of 90-s...
@billatkin3956
@billatkin3956 3 жыл бұрын
That's so true! Sometimes, when my computer is taking an age to complete an operation, I'm thinking 'Why the hell is it taking so long? What on earth is it doing to take so long?'
@64BitLamp
@64BitLamp 2 жыл бұрын
It's optimized because its borderline machine code. The more low level your code gets, then technically yes it is more optimized. I've been down the path of writing everything by hand with no libraries or dependencies (HTTP servers, database pools, auth API's) and I can tell you for a fact that you are creating nothing but problems later down the road. Enterprise doesn't always care about speed when it comes down to nanoseconds. It often cares if you can easily move your codebase to a new platform and if others can pick it up quickly. I'm not trying to dawg on C. I love C. I'm just saying it has its use cases (aka stuff really close to the hardware level). I don't need to access the A register from my API. Another thing to point out is C is processor specific, so it can be a nightmare trying to build separate environments. On the other hand I know that the JVM will run on almost anything without a fuss.
@user-lv6qm3fj2z
@user-lv6qm3fj2z 2 жыл бұрын
@@64BitLamp Bro, you just wrote a wall of text that can be summarized to "I don't care about the speed of my application as long as it just works somehow". No offense, but it's a deadend that sooner or later will cost us dearly.
@64BitLamp
@64BitLamp 2 жыл бұрын
@@user-lv6qm3fj2z I never said you shouldn't try to optimize your code, I'm just stating that sometimes other things can take precedence. Are you telling me you find big O notation of every algorithm you've ever written in your life (I hope not). It's simply about weighing the time required vs the amount gained aka opportunity cost.
@user-lv6qm3fj2z
@user-lv6qm3fj2z 2 жыл бұрын
@@64BitLamp of course I didn't - I'm a programmer, who being paid for results just like you, but that's the problem. We aren't given a proper time to optimize - and this leads the whole industry down the drain.
@rabbitcreative
@rabbitcreative 4 жыл бұрын
Enjoyed the timing. Ending on, "and that's something I care about." -- powerful way to state preference rather than talk about something as if what is being said is absolute fact.
@richardpalme5b
@richardpalme5b 4 жыл бұрын
@Dirk Knight 1. The Linux kernel is fast though 2. Just use a lightweight distro, e.g. Lubuntu.
@LouisChiaki
@LouisChiaki 3 жыл бұрын
I learn C as my first programming language. It is very clean, clear, and simple!
@sollyprogrammer3750
@sollyprogrammer3750 3 жыл бұрын
I fall in love with C
@lenonkitchens7727
@lenonkitchens7727 3 жыл бұрын
@@n4rfy477 C *is* simple. I've been writing it for 27 years, and it's always been simple. Bad code is what's not simple, and you can get that in any language, though admittedly, it's probably easier to write bad code in C.
@omshree901
@omshree901 3 жыл бұрын
coding in C is actually easy.... but developing or deploying data structures in C.... something I don't wish to do.
@salmarwow
@salmarwow 3 жыл бұрын
@@omshree901 making a hundred bugs in 10 lines of C code is easy, yes.
@danielbonheur5441
@danielbonheur5441 3 жыл бұрын
I agree with you - it gives you a deliberately minimal set of tools, so that when reading and writing C programs you know exactly what is going on.
@NickVoid
@NickVoid 5 жыл бұрын
Misleading "Yellow paper" style name of video. :) Linus didn't say "Nothing better than C". You cut this out of context. Talk was about specific task like "OS development" and choosing good tool for this task. Good quote: "If you think like a computer writing C actualy make sense". :)
@小张同学-v6i
@小张同学-v6i 5 жыл бұрын
yeah and nowadays thinking like a computer becomes obsolete as the likes of agile programming, scrum, etc time to market is the most important, that is why python, to the pragmatist, wins!
@patham9
@patham9 4 жыл бұрын
​@@小张同学-v6i Obsolete for user programs only, not for operating systems and not for the dozens of chips inside your PC and inside your car.
@emotionaware4192
@emotionaware4192 4 жыл бұрын
"...think like a computer..." I knew linus was a robot
@TheEVEInspiration
@TheEVEInspiration 4 жыл бұрын
@@小张同学-v6i I think the only reasons python ever got traction, despite it objectively awfulness and unsuitability, is that it got adopted by non-programmers in the field of Machine Learning and that it functioned as the perfect artificial reason to do 100% unit test coverage (as the language is that fragile). A tech trend mixed with a religion, those are powerful forces, it has nothing to do with pragmatism. And you would not claim it as a reason if you knew other languages that are far more pragmatic, without the fragility. I think it so bad, that I rather have no work than code in Python. There is only one language I know that is still clearly worse and that is Perl.
@chadiusmaximus9350
@chadiusmaximus9350 4 жыл бұрын
@@TheEVEInspiration Python was popular way before ML came around. Its a 90s language.
@jeancorriveau8686
@jeancorriveau8686 4 жыл бұрын
In the past 45 years, C has been the choice for development of operating systems. C allows for a bridge between hardware and software which is a role of an OS.
@philsburydoboy
@philsburydoboy 4 жыл бұрын
Really it is the choice for all things that exist outside of popular architectural paradigms. AI, games, realtime analysis software, etc. are also typically all written in C because OOP does not play nicely with lots of threads, data, or time. Military software is also written in C because it is easier to guarantee. The F-35 software is a 10-20 million line C project (with some C++).
@CTimmerman
@CTimmerman 3 жыл бұрын
​@Sirin Kalapatuksice Rude. Build engine (Duke Nukem 3D, Shadow Warrior, Blood, Redneck Rampage), id Tech 1-3 (Doom, Doom II, Heretic, Hexen, Strife, Chex Quest, Quake 1-3, Quake Live), and Jedi (Star Wars: Dark Forces, Outlaws) are written in C. GoldSrc (Half-Life, Team Fortress Classic, Half-Life: Opposing Force, Counter-Strike, Ricochet, Deathmatch Classic, Half-Life: Blue Shift, Half-Life: Decay, Day of Defeat, Counter-Strike: Condition Zero, Counter-Strike Neo, Counter-Strike Online) was written C, C++, and Assembly.
@StradexEngine
@StradexEngine 3 жыл бұрын
​@Sirin Kalapatuksice Imagine thinking Quake 3 it's shit lol. You are just delusional, go home kid.
@n3on440
@n3on440 3 жыл бұрын
@@StradexEngine ignore him, he is a typical troll
@rasitsimsek9400
@rasitsimsek9400 3 жыл бұрын
There is no reason today write everything for OS in C. There is a historical reason only.
@elietheprof5678
@elietheprof5678 2 жыл бұрын
People get a bad impression of C because of boilerplate code. For a long time I never got into game programming because of how many lines of code it took just to create an OpenGL window and render a basic "hello world" triangle on the screen. But once I abstracted it all away into a nice header, now programming in C became fun again.
@kokomong9254
@kokomong9254 4 жыл бұрын
in this , important thing is "for developing os"
@godwarrin
@godwarrin 4 жыл бұрын
But what if I used c to develop a website or a Windows app is there any advantages or disadvantages?
@tetst_54546
@tetst_54546 4 жыл бұрын
@@godwarrin There are. For example, apps written in C can crash really easily. You need to handle all the possible situations by hand, or use many libraries and learn them. Also you need to manually manage the memory use, which can cause nasty memory leaks and make your app crash again (or worse). On the other hand, languages like Java or C# have been designed to prevent mentioned problems (as possible), but of course you pay for it with lower performance, at least in some cases. However, most of the time it is much better to use high level language (Java / C#) and if there are any parts that need to run very fast simply write them in C. Such approach can speed up the development a lot and deliver application of higher quality.
@sakethravuri3023
@sakethravuri3023 4 жыл бұрын
@@tetst_54546 🤓
@stackerliew
@stackerliew 4 жыл бұрын
@@tetst_54546 But not for Linus Torvalds, for him, he can do anything with C, and the some more is rock solid stable.
@tetst_54546
@tetst_54546 4 жыл бұрын
@@stackerliew True. However, if we relied only on Linus, we probably wouldn't have so many applications.. :D So yeah, we need tools for less skilled developers too. But Linus is a great inspiration for me, and I have been Linux user for more than 12 years now! ;-)
@helloitismetomato
@helloitismetomato 3 жыл бұрын
Videos like this really should have the date in the title/description, or at the very least the year
@cesardmora86
@cesardmora86 2 жыл бұрын
"when I read C, I actually see all those green words of the matrix" Linus Torvalds
@karthikk2719
@karthikk2719 3 жыл бұрын
He is like Neo from Matrix. He can see through high level programming language and deduce low level code.
@georgplaz
@georgplaz 3 жыл бұрын
C is NOT a high level programming language 🙄
@vijaykryesItsMe
@vijaykryesItsMe 3 жыл бұрын
Depends on the context.C is high level compared to Assembly
@Kevin-jc1fx
@Kevin-jc1fx 3 жыл бұрын
He is a human compiler or interpreter.
@The13point1
@The13point1 3 жыл бұрын
He can C through high level programming
@karthikk2719
@karthikk2719 3 жыл бұрын
@@georgplaz Yes I agree, its definitely not as high level as Python, but from the perspective of executable binaries and OP codes and assembly languages, C is relatively high level and human readable :D. Come on man, I am just kidding around. Cheers!
@mattgrice7228
@mattgrice7228 4 жыл бұрын
Aw shit, the entire Rust community is on suicide watch
@proloycodes
@proloycodes 3 жыл бұрын
well no i prefer Rust more than C, altho i respect a guy as great as Linus Torvalds edit: spelling
@KidB.
@KidB. 3 жыл бұрын
Rust in Linux kernel is a serious possibility today and even Linus is open to that.
@astrolillo
@astrolillo 2 жыл бұрын
Good!
@astrolillo
@astrolillo 2 жыл бұрын
​@@KidB. if by today, you mean "in 20 years at the very least" and if by serious you mean " as long as Rust is the new cool thing if another 'cooler' language does not comes up"
@HaveAGoodHeart
@HaveAGoodHeart 2 жыл бұрын
@@KidB. Tks for telling us. do you have any ref to this?
2 жыл бұрын
Love this! It's so true! C is an amazing language and Torvalds remark, being able to visualize its outcome resonates with me. We did C (no + or visual or anything then) just simple C programing for composer input languages for music composition at the Center for Contemporary Music (CCM) at Mills College back in 1983/84 in Oakland, CA. Those were amazing times and great memories.
@EigenMaster
@EigenMaster 3 ай бұрын
"I like tinkering hardware from a software perspective." Words to live by
@luv2stack
@luv2stack 3 жыл бұрын
When you google "Nothing else matters" and KZbin gives you "Nothing better than C". That's when you know you are nerd
@NytronX
@NytronX 4 жыл бұрын
ELI5 version: When linus looks at a computer screen, he sees it in The Matrix esque green scrolling characters.
@wolf_code
@wolf_code 2 жыл бұрын
As a Denis Ritchie said: C will be the language that will be very hard to replace in low level programming
@lanceharvie6933
@lanceharvie6933 2 жыл бұрын
I don't see anything remotely close to C except machine assisted coding but that itself will spit out C code
@wolf_code
@wolf_code 2 жыл бұрын
@@lanceharvie6933 exactly, thx for fix)
@directx872
@directx872 Жыл бұрын
Yes until the compiler starts using architecture specific instrisics and vendor specific instruction sets. The you no longer can tell anything
@heinzk023
@heinzk023 Жыл бұрын
I learned object orientation with a C (!) program. This program had structs containing pointers to arrays of function pointers all over the place and it took me a while to figure out what it was good for. After getting in contact with C++, I suddenly realized that what I saw back then was nothing than virtual functions and inheritance!
@BillFlann9
@BillFlann9 3 жыл бұрын
Two take away sentences ..."If you think like a computer, writing C actually makes sense" and "If I read C I know what the assembly language will look like"
@michaelpotts1131
@michaelpotts1131 3 жыл бұрын
And that’s why assembler (System 360/370) and C were combined into one class in my undergrad.
@jerrygreenest
@jerrygreenest 4 жыл бұрын
1:12 "when you... I mean, when compilers", ha ha. People, compilers, whatever...
@empty3061
@empty3061 4 жыл бұрын
back in the days, there were people who actually did the work compilers do now...
@blackcitadel37
@blackcitadel37 3 жыл бұрын
people are food compilers.
@jerrygreenest
@jerrygreenest 3 жыл бұрын
@@blackcitadel37, we compile food into code? Pls don’t just tell me my code is shit
@georgplaz
@georgplaz 3 жыл бұрын
@@jerrygreenest actually, in german, another word for shit is "Kot". which is pronounced almost exactly like "code". So reading your comment aloud is.. confusing, while making a lot of sense..
@balintb2748
@balintb2748 10 ай бұрын
if you look really close you can notice he is signaling "Rust" in morse code with his foot
@rishabhmahajan6607
@rishabhmahajan6607 4 жыл бұрын
All firmware engineers are nodding in approval
@kevinchadwick8993
@kevinchadwick8993 5 ай бұрын
Nope. After writing embedded Ada code professionally you will hate reading C reference code and all of it's obfuscation of the logic.
@linuxdemy
@linuxdemy Жыл бұрын
C is the mother of many things in computing.
@charlieking7600
@charlieking7600 Жыл бұрын
The main Mutterficker of programming languages is Algol.
@jimreynolds2399
@jimreynolds2399 4 жыл бұрын
I agree with him 100%. Many programmers don't know the link between source code and what that looks like when it's compiled and then when it's assembled. Many programmers don't need to care about that level of detail because they're programming in Java or interpreted languages and in fact many programmers don't have the knowledge or skills to understand machine-level programming. They don't know about instruction-sets or memory management. Web Services is so abstracted from hardware that it's just not necessary to understand anything about hardware interaction. It doesn't mean you're programming is inferior if you're not on the hardware.
@harrytjokroaminoto9212
@harrytjokroaminoto9212 3 жыл бұрын
why linus asking himself?
@xr.spedtech
@xr.spedtech 3 жыл бұрын
Walking philosophy, Can't stop Listening to his talks / conferences ....
2 жыл бұрын
Pure gold! I always loved C, but never really knew why. His words made me understand something I have subconsciously felt all that time. When you write C code you KNOW exactly what the computer will do. When you write code in some fancy new language, using annotations and stuff, you HOPE that it will do what you think it will. It's a difference between knowledge and faith. And I prefer the former.
2 жыл бұрын
I'm sure you do. But I feel much more comfortable when I know exactly how the program manages memory or when it allocates and releases various resources. I'm not saying C is the only language that can do that, but it's my all-time favourite.
@timhofstetter5654
@timhofstetter5654 3 жыл бұрын
I could not possibly agree more, in all regards. Except, of course, that I'm also very, very comfortable with a soldering iron.
@rubyciide5542
@rubyciide5542 Жыл бұрын
Assembly 'i took that personally '
@TheOneAndOnlyNeuromod
@TheOneAndOnlyNeuromod 3 жыл бұрын
The funny thing is - if you've ever started from the ground up - trying to build your own disassembler or assembler/compiler - or building kernel primitives in your own OS - you end up converging upon the same constructs formed in C anyway. LOL The language is just elegant and efficient.
@Kimchi_Studios
@Kimchi_Studios 3 жыл бұрын
He's right. It's why I use it to program the Atmega328p in C instead of the Arduino in 🤢🤢🤢Arduino language🤮🤮🤮🤮🤮🤮.
@lanceharvie
@lanceharvie 3 жыл бұрын
That's awesome @Kimchi Robotics!
@insoft_uk
@insoft_uk 3 жыл бұрын
One of my favourite languages the other is assembly. Totally understand his response when it comes to working with hardware you need a language that works at a medium or low level
@sakon4466
@sakon4466 3 жыл бұрын
there was a time C was called a high level language
@marcb907
@marcb907 3 жыл бұрын
@@sakon4466 C is high level language, it sits on top of ASM.
@sur4y
@sur4y 3 жыл бұрын
@@marcb907 so you're one of those people who like to think that binary is low level, assembly is mid level and C is high level, right? then wtf is C#? ultra high? what about python?
@carldrogo9492
@carldrogo9492 Жыл бұрын
@@sur4yC, is a high level language. Any language that is NOT Assembly is high level. 🤦‍♂️
@storerestore
@storerestore 11 ай бұрын
Having written about 12000 lines of Zig over the past year, I think it's a strong contender that maintains these aspects of C and in a lot of ways surpass them, removing many of the footguns of C without the complex macro system and memory management paradigm of Rust.
@aakashmalviya6231
@aakashmalviya6231 3 жыл бұрын
I like how the text shows when he's saying something important. More channels should start doing this.
@thedude4795
@thedude4795 3 жыл бұрын
Kurt Russel pouring whiskey inside the computer, thats "interacting with the hardware".
@wysoft
@wysoft 2 жыл бұрын
Never learned C, only ever learned BASIC before deciding that programming wasn't really my main interest. Still, I don't have much trouble reading C and getting a basic understanding of what the code is doing. It's almost unavoidable that you will have to look at some C code and build processes while dealing with Unix systems for 20+ years. I would have absolutely zero idea what a block of FORTRAN or COBOL code is doing, and no hope with assembly or machine code. The fact that someone proficient in C can do almost anything with it, and a layman can still look at a block of code and decipher a good deal of it - that's a great language. Maybe someday I'll get off my ass and learn it when I have nothing else to do.
@Flamechr
@Flamechr Жыл бұрын
Depends who wrote the code 😂
@AGUNGKAYA
@AGUNGKAYA 4 жыл бұрын
Everything in his mind is about linux kernel, so he will stick in C..
@karma6746
@karma6746 4 жыл бұрын
@@miguelbarra5091 You mean the MOST POPULAR versioning tool in the world!
@adnanhowlader143
@adnanhowlader143 3 жыл бұрын
@@karma6746 python is written in c
@Deschutron
@Deschutron 4 жыл бұрын
At first I thought the guy asking him the question might have been a young Linus Torvalds. I guess having heard that answer from his future self, he focussed on C more strongly and achieved greater things.
@Deschutron
@Deschutron 4 жыл бұрын
@statorworks 345 I'm glad I wasn't the only one who thought that, or rather I was..
@jerrygreenest
@jerrygreenest 4 жыл бұрын
@@Deschutron, just watch "The Egg" and don't ask weird questions (of course you was)
@Deschutron
@Deschutron 4 жыл бұрын
@@jerrygreenest galactanet.com/oneoff/theegg_mod.html Oh wow, what a great twist to add to the idea of us all being the one soul via time-travelling reincarnation! I can't wait for Linux to grow up and write its own OS.
@voxelamateur
@voxelamateur 3 жыл бұрын
I thought exactly the same until the younger person started to speak. underrated comment
@tylerriley
@tylerriley 3 жыл бұрын
I like C for the overflows. But I don’t really know what I’m talking about.
@kattihatt
@kattihatt 3 жыл бұрын
@@n4rfy477 lol
@makelebanon1
@makelebanon1 3 жыл бұрын
the title should be, "When I read C I know what the assembly language look like"
@alpers.2123
@alpers.2123 3 жыл бұрын
Meanwhile optimizer: 🤨
@kjetilhvalstrand1009
@kjetilhvalstrand1009 4 жыл бұрын
The problem with C++ is hidden allocations, the things you don't see, it’s the tendency to write complicated code for simple tasks. on the other hand, C++ is good for complicated code. Its about finding the balance. A C++ string is abstraction of methods, data, memory management, a array of char, is just a array of bytes.
@jjl772
@jjl772 4 жыл бұрын
That's only really true if you use the STL though. You can choose to write C++ in the style that I call "C with classes", where you only use built-in language features like classes, namespaces, lambdas, templates, etc. and avoid using the STL wherever possible. I agree that you can accidentally write over-complicated code with C++, but I think a big part of writing good code is the mindset going into it. If you're writing a really simple application, you need to go in with the "C programmer's" mindset, meaning you utilize more basic language constructs instead of shoehorning classes, lambdas or templates into the program.
@kjetilhvalstrand1009
@kjetilhvalstrand1009 4 жыл бұрын
@@jjl772 I don’t think templates are bad, after all a template is way to make new classes by inserting stuff into it, I’m sure the code becomes bloated, (size of the code), I don’t think it impact speed. Names spaces, just a quick way to rename a bunch function variable, there nothing really wrong with it. Lambdas can be bad I have not looked into this, any function you create will always produce some overhead, but then again it becomes a question is your code readable, or is it not, if doing lot of copy & paste coding, you probably should be using a function or methods, or function pointer or whatever, it all depends. It’s not that lots of code is bad, or little code is good, its just that lots of the same, often result in some of code not being fixed or updated, and so it results in bugs. An example of more code being better is when you unroll loops, remember its not the number of lines on the screen that makes a difference, it’s what being executed that does..
@jjl772
@jjl772 4 жыл бұрын
@@kjetilhvalstrand1009 Of course, I'm not saying templates are bad at all. I personally use templates in many of my projects, as they're useful there. In more simplistic applications I avoid templates and lambdas, because I don't really need to use them to parse command line arguments, for example. As for performance, templates, classes and namespaces don't impact it at all really, unless you're using virtual methods inside of a class. My previous reply was really just addressing complexity from the programmer's point of view. All these high level language constructs can damage readability if overused or used improperly, and I've personally seen a lot of code that really overuses this type of stuff.
@kjetilhvalstrand1009
@kjetilhvalstrand1009 4 жыл бұрын
@@jjl772 I compared the string vs chars[], but there also things like initializers in classes, while C use bzero( &var, sizeof(struct hello) ), in initializer in classes you often start setting individual public and private data to 0, instead of using optimized routine to clear everything. So again, coding style produces worse code. You start think about what is inside the box, instead of think about the box. And some times you forget you are dealing with box lots stuff, because all looks like a simple type.
@jjl772
@jjl772 4 жыл бұрын
@@kjetilhvalstrand1009 std::string in C++ is known for being slower than C strings usually. The only good thing about it is that it stores the length, so you dont need to call strlen all the time. Other than that, std::string has a lot of overhead in the constructor, copying of data, and other cruft that's inside of its member functions. I never said that I used std::string too, I said that I *avoided* using std::string in favor of normal char arrays.
@asdadadsadasda
@asdadadsadasda 2 жыл бұрын
True! I agree 'C' is required for best.
@Sam-hu3xt
@Sam-hu3xt 4 ай бұрын
Recently I had to audit a little project of 6k assembly instructions compiled from C, and the fact that everything can be traced easily between Source Code and Object Code it is such an important thing while developing safety critical software, that makes C so relevant today.
@LydellAaron
@LydellAaron 4 жыл бұрын
Only a dramatically new computer architecture paradigm could unseat C as the language of choice for system programming. C will likely remain alive, for as long as our modern processor architecture involves bits, bytes, CPU and memory mapping.
@tappy8741
@tappy8741 3 жыл бұрын
Rust is a good augment, but even that won't unseat C
@embeddor2230
@embeddor2230 2 жыл бұрын
It's called C++. A safer and better C
@chengmunwai
@chengmunwai 3 жыл бұрын
We have an entire generation of so-called "coders" now who prostrate themselves before Ruby on Rails not knowing that C still exists and they can't write a single query in SQL.
@davidjohnston4240
@davidjohnston4240 2 жыл бұрын
Not writing queries in SQL is a good thing. SQL is a truly horrible thing. I've seen 4GLs in the early 90s that were more elegant.
@saudude2174
@saudude2174 2 жыл бұрын
the more coders on the market, the less competition for actual programmers if you're still young and striving for a better career and pay, you should be happy as well dont worry about the "general level of knowledge" decreasing. You will always find enthusiasts and scientist who push the cart forward, actually, there's more of them now than there was in the past. This generation of coders is exactly what the market demands at the moment and its good for us.
@carldrogo9492
@carldrogo9492 Жыл бұрын
@@saudude2174thats contradictory.
@saudude2174
@saudude2174 Жыл бұрын
@@carldrogo9492 to what?
@videoaccount5676
@videoaccount5676 4 жыл бұрын
C Master race reporting in
@GigaPlaya
@GigaPlaya 4 жыл бұрын
I still remember the days when we used a hex editor to alter programs. Not for people who have trouble spelling.
@kingzeeb319
@kingzeeb319 4 жыл бұрын
C? Fucking casul, do as zer0flag said and then you can talk.
@empireempire3545
@empireempire3545 4 жыл бұрын
@zer0flag thats casual. I write by positioning my motherboard in just correct way for the incoming cosmic rays to generate current corresponding to sequences of 0s and 1s i want to execute.
@libremercadoencrisiseconom2118
@libremercadoencrisiseconom2118 4 жыл бұрын
real ones have a custom keyboard where they make logic gate combinations, and set flags and builds physical mem allocators, then insert a card which is wrapped by an electromagnet machine built by themselves, and that also moves card registers into logic entries reading and modifing pointers regarding the flag states produced by logic subroutines, to inner ones
@anse1774
@anse1774 3 жыл бұрын
I hate your race
@aarkey4556
@aarkey4556 4 жыл бұрын
Dennice Ritchie - unsung hero in computer science...
@ahzamlathiya6367
@ahzamlathiya6367 4 жыл бұрын
Also created the UNIX kernel I think?
@alexcc316
@alexcc316 Жыл бұрын
“Do you C any other languages than C?”
@misogear
@misogear 4 жыл бұрын
Damn i just complete ruby for beginners
@xsorn
@xsorn 4 жыл бұрын
I agree. Dont start with C. C is a good second language to learn. Now get a good beginner's book on C and get started!
@yzhang2008
@yzhang2008 4 жыл бұрын
No worry, Ruby is one of the best application developing languages. And it's good for beginners too. C is basically for system programming. It's almost impossible using C to implement something like RoR.
@plasmahvh
@plasmahvh 4 жыл бұрын
@@yzhang2008 it's like hahaha python is too slow for AAA engines! C is not meant to be used in web development, like python isnt used for complex games. people learn C cause they want to go as low level as possible but still don't want to mov all the time.
@toma4474
@toma4474 4 жыл бұрын
Ruby is very simple. It’s for web back-end. C is completely different ballgame it’s used for making libraries in mobile devices. The smart phone you’re running using many those c libraries processing this webpage. I’m using iPhone’s KZbin app which uses lots of c libraries. One question: Is Ruby on Rails losing it’s popularity? It was very fast tho.
@popespalace823
@popespalace823 4 жыл бұрын
@@plasmahvh Most videogames are made in c++
@GRDwashere
@GRDwashere 3 жыл бұрын
I get what he's saying. I write hardware specific code for embedded controllers and c is my language of choice for that.
@JJSogaard
@JJSogaard 3 жыл бұрын
He didn't really say that there is "nothing better than C", though that might have been what he meant. He simply said that C does something unique, specifically in regards to OS development, that he values and therefor he prefers C.
@nantunest
@nantunest 4 жыл бұрын
C is just generic assembly, as said one of the best C programmers I've met. He had developed his own OS on that time and made his master and doctorate thesis over it.
@nasrimarc7050
@nasrimarc7050 2 жыл бұрын
Rust don't replace the C language but it's a excellent programming language with built-in security mechanism, data structure and memory management so opening Linix Kernel to the Rust language is pretty good idea 💡
@robertobokarev439
@robertobokarev439 2 жыл бұрын
funny joke, lol
@nieczerwony
@nieczerwony Жыл бұрын
Not with regulation currently introduced by foundation. It's a joke. Try to imagine I'd Dennis Ritchie would go the same route as Rust foundation. People creating unix or C/C++ language were humble geniuses, which worked with passion to make it possible for engineers and scientists to use tools which will speed up and improve their work. Look at the difference between Bill Gates who didn't even invented Windows and Ken Thompson who created Unix. Rust it's actually going into direction of Gates.
@charlieking7600
@charlieking7600 Жыл бұрын
Have you ever tried static analysers?
@blankjo9113
@blankjo9113 Жыл бұрын
Multidimension arrays are a real nuisance in C
@arminharper510
@arminharper510 4 жыл бұрын
it wasn't until i decided to write a desktop script for my Kali linux in PHP that i realized that programming languages DO differ and it is imperative to choose the right one for your project. so i agree with him,if you want to build an OS just go for C. in PHP a thing as simple as taking some inputs from the user is unusual since you have to "read a file" and then add that line to history manually xD
@ShaferHart
@ShaferHart 4 жыл бұрын
PHP is the wrong choice though. Always.
@anvarnasar7716
@anvarnasar7716 4 жыл бұрын
It is not the fault of PHP. That is how the implementation of basic printf() and scanf() io functions is implemented in C. I didn't know this until I read some books about linux system programming in c. You have to call the kernel commands and do a ton of stuff like memory management to do io and every io devices are treated as a file in linux systems. In the case of C they implemented this as stdio on the standard c library which comes preinstalled with linux system. By default your c program is linked to the standard c library if you include header files like stdio.h. I think you can get one like that for PHP from composer or something.
@arminharper510
@arminharper510 4 жыл бұрын
@@anvarnasar7716 i never said that it was PHP's fault. It is perfect for what it's designed to do, it is the entire point of my comment :p also i have started to learn C since i wrote this comment and i just love it :p
@anvarnasar7716
@anvarnasar7716 4 жыл бұрын
@@arminharper510 I am also a C and C++ programmer.😃
@Dr.Theopolis
@Dr.Theopolis 3 ай бұрын
100% Agreement with Torvalds. I am SE since 32 years. 👍
@pdjinne65
@pdjinne65 2 жыл бұрын
C is the closest language to assembly, other than assembly itself. C++ became a lot more abstract and conceptual, most of the time it's up to the compiler to optimize and make your stuff faster, but in C it's up to you.
@ChristopherGray00
@ChristopherGray00 Жыл бұрын
there is nothing inherently more low level about C than there is with rust or C++, the latter two languages just provide the option for higher level abstractions and more library functions, whereas with C, you pretty much have to write low level code unless you import an external library.
@FaustoSaporito
@FaustoSaporito Жыл бұрын
C is defined as a portable assembler :)
@obiwankenobe3962
@obiwankenobe3962 10 ай бұрын
@@FaustoSaporito Exactly right! I was looking for that comment, if missing, I was going to add it myself :)
@FaustoSaporito
@FaustoSaporito 10 ай бұрын
@@obiwankenobe3962 but really I regret there is no PL/M for the latest Intel processors :) C is quite close, but features like write everywhere in memory or goto everywhere in memory, access the flags, without using assembler, of course. But my way to work with C is very peculiar. :)
@Muck-qy2oo
@Muck-qy2oo 4 жыл бұрын
C is like a linking point between all other, higher, languages and assembly language.
@SuperMarkusparkus
@SuperMarkusparkus 4 жыл бұрын
not javascript
@ianboard544
@ianboard544 3 жыл бұрын
It's also nice not having to learn new languages all the time as they drift in and out of fashion.
@fredflintstone8048
@fredflintstone8048 2 жыл бұрын
Yes, web-stack developers seem somewhat fickle and there seems to be a new framework that hits the scene every year or two. I suppose it's our addiction to novelty, or some kind of thinking that finally a framework has arrived that will make web-stack development better, easier, whatever.
@suibora
@suibora 2 жыл бұрын
​@@fredflintstone8048 web developer - "Why are there 7 different standards to do the same thing? I'm just going to unify them all into one standard without any of the bugs or gimmicks". Now there are 8 standards
@fredflintstone8048
@fredflintstone8048 2 жыл бұрын
I think there are so many standards because there are so many different ways to skin the same cat. There are also different frameworks for just about every popular language, and the browser is fairly flexible and if a developer wants to do something different he/she can even create plugins for browser to be able to interact with the server/service environment.
@esra_erimez
@esra_erimez 4 жыл бұрын
For too long high level computer languages tried to model the problem space. Think Fortran and Cobol. Whereas, C modeled the hardware at a higher level. Therein lies its elegance.
@ElPasoJoe1
@ElPasoJoe1 4 жыл бұрын
I liked FORTRAN. Hard to do recursion - knew a guy once who did it but he had to build his own stack and be very careful it didn't overflow. A Kludge at best. But for real time command and control it was really good. It was not as good at hammering on numerical solutions for differential equations as a spreadsheet (Visicalc) was. Yeah, I'm old...
@Alche_mist
@Alche_mist 4 жыл бұрын
@@ElPasoJoe1 It all depends on the use case. It's autumn 2019 and it's not even a month I have seen a freshly written (my acquaintance actually wrote it) Fortran (.f90) program that's actually used to enable quite a significant discovery in the field of quantum chemistry. Fortran isn't dead. It's specific in what it wants to do.
@esra_erimez
@esra_erimez 4 жыл бұрын
@@Alche_mist +1
@asadulhaq6689
@asadulhaq6689 4 жыл бұрын
This is the unspoken truth we all know, and yet seldom put in words.
@williamdavidwallace3904
@williamdavidwallace3904 4 жыл бұрын
C is essentially just a higher level assembly language especially if one does not use an optimizing compiler.
@life-zc1mb
@life-zc1mb 2 жыл бұрын
literally everyone in the comment section "so I used to write code in C for the LEO satellite system in 1972...."
@tecra3toshiba149
@tecra3toshiba149 3 жыл бұрын
Thank you! Assembler - that is a blast from my childhood. I was lucky. My dad brought home all kinds of hardware.
@carldrogo9492
@carldrogo9492 Жыл бұрын
*Assembly
@lamperouge3615
@lamperouge3615 2 жыл бұрын
I got into programming with Java and learned C a bit later on. I mean pointer arithmetic can be confusing in the beginning, but once you get into it and understand what the code really does it's so beautiful to actually program the computer and not some abstract concept. You will never want to use Java again xD
@lanceharvie
@lanceharvie 2 жыл бұрын
Pointers are magic once you get your head around them.
@carldrogo9492
@carldrogo9492 Жыл бұрын
You clowns fanboy over tools (programming languages are tools). 🤦‍♂️😂
@WestCoastAce27
@WestCoastAce27 4 жыл бұрын
The man, the legend.
@fubaralakbar6800
@fubaralakbar6800 4 жыл бұрын
When the Boss speaks, you listen ; )
@mutshidziphaswana1706
@mutshidziphaswana1706 4 жыл бұрын
Makes sense why it’s easy to translate most c code into assembly language
@gibbogle
@gibbogle 10 ай бұрын
No argument here.
@vetiarvind
@vetiarvind 2 жыл бұрын
Damn, this makes me nostalgic about the time in the 90's when I was writing C code for travelling salesmen, TSR's and stuff like that as a teenager. I forgot the name of the IDE (it had a blue background with a DOS like look) After that have coded in C++, VB, C#, Java, Scala, Haskell, Js, Typescript, Python, Ruby but yeah I still remember reading the docs for each function in C listening to heavy metal back in the day.
@bill3143
@bill3143 2 жыл бұрын
Borland Turbo C, perhaps?
@nezman_x2080
@nezman_x2080 Жыл бұрын
Turbo C
@shantanushekharsjunerft9783
@shantanushekharsjunerft9783 4 жыл бұрын
gcc -S stops the compilation process at x64 assembly, from my vague memory. I would take every C code and bring it to assembly and it just made perfect sense.
@vikramaditya8080
@vikramaditya8080 4 жыл бұрын
Totally bro.
@ComeLeVent
@ComeLeVent 2 жыл бұрын
I agree even though I like the concept of classes at least, but not the fashion to think everything in object oriented terms. Even inheritance is something i prefer to avoid.
@taxerap8498
@taxerap8498 2 жыл бұрын
I agree with you. I quit Rust mainly because it supports OOP in the language explicitly, and when a language does that, people *will* start to write OOP, and it ends up with a bunch of mess. It is possible to do OOP with C, but no one does that because the language intents to let you think about the CPU, rather than abstractions upon abstractions. (Using "classes" is not the same as OOP)
@kevinchadwick8993
@kevinchadwick8993 5 ай бұрын
​@taxerap8498 You should check out Ada. It had object oriented design (not oop) in the 80s. It was also designed for embedded use and to be highly maintainable. Ada is actually safer and easier to use than Rust too. I'm not really a fan of object-oriented or functional programming. Imperative programming is under rated .
@kuzcoII
@kuzcoII 3 жыл бұрын
I am here for the thumbnail, and the thumbnail only
@erwinkonopka7071
@erwinkonopka7071 2 жыл бұрын
Well. Recently he added Rust to list of allowed languages in kernel. So finally he must have found a language at least as good as C.
@philippemts88
@philippemts88 Жыл бұрын
The comment section, full of people fighting over programming languages, cracks me up. I wonder why programming forums/videos attract so much toxic and ignorant people.
@fiddle_n
@fiddle_n Жыл бұрын
The video itself has kind of a clickbaity title. The question and the answer were in the context of operating systems, yet the title just says "nothing better than C". Add in the fact that this is an old video from before Rust was established and you have a perfect combination.
@davidloo1002
@davidloo1002 4 жыл бұрын
Hey Linus, I am a high school student. I always love C too. But my parents don’t agree with me. :(
@ahmadyogi1340
@ahmadyogi1340 4 жыл бұрын
It's okay maybe someday you'll get C++
@davidmella1174
@davidmella1174 3 жыл бұрын
hey, at least it isnt a D. Dont make it so bad.
@CTimmerman
@CTimmerman 3 жыл бұрын
Sounds like kzbin.info/www/bejne/iJ_Ucourgb-fl6c
@AGUNGKAYA
@AGUNGKAYA 3 жыл бұрын
You should learn Ada, so you will love A too :D
@TheLordoftheDarkness
@TheLordoftheDarkness 3 жыл бұрын
Get new parents
@howardlitson9796
@howardlitson9796 4 жыл бұрын
Don't forget that nothing better than assembly language and machine code. C language was published in 1972. Assembly language was published in 1949. Since there was electronic computer, in that time was appeared in assembly language. C language was based on assembly language.
@gueratom
@gueratom 2 жыл бұрын
Denis Ritchie and Ken Thompson, thank you.
@rampr4225
@rampr4225 2 жыл бұрын
I can't imagine my life without C ❤️❤️❤️❤️❤️
@shivashankar28
@shivashankar28 4 жыл бұрын
Live for C, another C master race reporting in.
@alicangul2603
@alicangul2603 3 жыл бұрын
Reading Kernel code is a great way to learn more about C. I do it on my "spare" time :)
@DeepakS64
@DeepakS64 3 жыл бұрын
Which doesn't exist
@delamar6199
@delamar6199 5 ай бұрын
I had my C course in building C, room 63, ground floor (0x63) and drove an old C-Class. I guess my path was set back then :D
@lanceharvie6933
@lanceharvie6933 5 ай бұрын
haha love your sense of humour
@sinancan4822
@sinancan4822 2 жыл бұрын
I am not so experienced with programming but somehow I have the feeling that there is C behind everything.
@saudude2174
@saudude2174 2 жыл бұрын
It's not exactly C that is behind everything, but other languages have copied a lot of key concepts from C back in the days. Java is a good example, though it's a language that works entirely different under the hood, so you can't exactly say that C is under the covers there.
@mrdesperate1
@mrdesperate1 3 жыл бұрын
I expected to see a lot more posts bringing up rust
@sakon4466
@sakon4466 3 жыл бұрын
i would like to see them too
@yokytolakaca7485
@yokytolakaca7485 4 жыл бұрын
Nothing better than taking the spark mechanism in lighters and using it on a processor to make it calculate
@subhamroy8817
@subhamroy8817 4 жыл бұрын
i just stick my laptop in a microwave and wait until the EM interference randomly toggles the signals in the memory cells of the processor registers to match my desired result. my laptop is trashed but it works for about 60% of the times, all the time.
@sakon4466
@sakon4466 3 жыл бұрын
this looks like the most efficient way
@SeventhCereal
@SeventhCereal 3 жыл бұрын
C++ is good enough for HFT which can do a complete reaction from input in 10 nanoseconds. But the standards are high and requires many unit tests to ensure assumptions of compiler optimizations are correct, which they usually are. Then you have to adjust the algorithms to the cache and core layouts of the processor. C is more of a direct-mapping but its clunky and old school back when you had 1 person do everything.
@carldrogo9492
@carldrogo9492 Жыл бұрын
What is HFT?
@deanwilliams433
@deanwilliams433 11 ай бұрын
​@@carldrogo9492High Frequency Trading
@alejandrochataing5341
@alejandrochataing5341 3 жыл бұрын
My first code was in C and I loved it. I later learnt C++, Java, php, javascript, mysql, autohotkeys, bash, git, visual basic, c#, nodejs, wordpress dev, laravel without mentioning many more
@ton6492
@ton6492 3 жыл бұрын
how the hell do you remember all them
Linus Torvalds: Speaks on Hype and the Future of AI
9:02
SavvyNik
Рет қаралды 207 М.
Help Me Celebrate! 😍🙏
00:35
Alan Chikin Chow
Рет қаралды 17 МЛН
Brawl Stars Edit😈📕
00:15
Kan Andrey
Рет қаралды 54 МЛН
Как подписать? 😂 #shorts
00:10
Денис Кукояка
Рет қаралды 7 МЛН
Wisdom From Linus | Prime Reacts
12:18
ThePrimeTime
Рет қаралды 483 М.
The Code: Story of Linux documentary (Multilingual)
58:54
Adam N.
Рет қаралды 1,1 МЛН
Linus Torvalds Guided Tour of His Home Office
4:25
Barbara
Рет қаралды 1,7 МЛН
C Programming Language | Brian Kernighan and Lex Fridman
6:18
Lex Fridman
Рет қаралды 170 М.
Steve Jobs Insult Response - Highest Quality
5:15
Jonathan Field
Рет қаралды 14 МЛН
Linus Torvalds: We Don't Use Windows
2:58
TFiR
Рет қаралды 1,1 МЛН
Linus Torvalds: Speaks on Linux and Hardware SECURITY Issues
9:24
My First Line of Code: Linus Torvalds
2:13
Bloomberg Originals
Рет қаралды 2,3 МЛН
The Most Legendary Programmers Of All Time
11:49
Aaron Jack
Рет қаралды 564 М.