Writing a simple Program in C

preview_player
Показать описание
A fast introduction into programming with C.

-=[ ❤️ Support ]=-

-=[ 🐕 Social ]=-

-=[ 📄 P.S. ]=-

All links with "*" are affiliate links.
LiveOverflow / Security Flag GmbH is part of the Amazon Affiliate Partner Programm.

#Programming
Рекомендации по теме
Комментарии
Автор

Half a decade old and still gold. Decided to pick this series up at random and I've already learned a lot. Side note for those of you who might be running the latest Kali Linux, keep in mind modifying ".bashrc" may not get the results your looking for because Kali now uses Z Shell. You need to modify ".zshrc" instead. Hope this is helpful!

damiancampbell
Автор

I've struggled with handling command line args for years with my random coding needs. And it really was this simple but this was first explanation I understood immediately and explained it all. Thanks!

timop
Автор

I had to literally keep rewatching all day so maybe it isnt for beginners, but I finally understand everything so THANK YOU LIVE.O!

stefeyes
Автор

6:10 You can also place your cursor over any standard library function and press Shift+k to bring up its man page while remaining in Vim

jphanson
Автор

Finaly someone mentioned the sections of the man pages and the man for the man.
you enlightened me with that information. I start to actually understand the manual after this video.

THANKS <3

awoidf
Автор

usually I don't leave comments but I have to say quality of the contents is really great THANK YOU!

dragonfly
Автор

I know these tutorials are on the older side, but Thank you so much! It's a bit fast, but thats perfect for someone like me who prefers to have to research a bit and actually learn the material.

mattj
Автор

Your videos are incredible! What I love most is that you go from beginner to advanced in a very smooth way, where most videos stick to beginner level. Your ability to explain everything with such depth and clarity, display your knowledge of the material. Keep up the fantastic work.

antonionoriega
Автор

Wow, just wrote my first proper C program using your knowledge! Thanks LiveOverflow!

jthecoder
Автор

Maybe a bit advanced too immediately start with vim but this looks like a great series I am going to watch!

tristant
Автор

The variables are named argc (argument count) and argv (argument vector) by convention, but they can be given any valid identifier: int main(int argu_count, char** arg_strings) is also valid, or int main(int my_own_creation1 char** my_own_creation1).

They can also be omitted entirely, yielding int main(), if you will be using a function which will not return anything, you can do this: int main(void). Happy hacking :)

brunoschmid
Автор

Wanted to thank you, the way you teach forces me to try to understand by myself and then do some research to see if I understood correctly, super excited to keep going with this series

TheShidden
Автор

If "man 3 printf" doesn't work for you, you can run the command "sudo apt install build-essential" which will install a set of packages commonly used for software development. That will also add the third section of "printf" to the system manual. At the same time, it will also install the GNU compiler which will give you access to the "gcc" command so you can compile the program.

lengors
Автор

wow this is pure gold dude. I have been programming in C and I didn't know that main function could receive parameters like that. The "int main (void)" thing was so automatic in my mind that I never wondered if main could do that. Anyways, thanks for this. For the video, the playlist, the channel, everything. I am learning so many interesting things and maybe in some months I can participate of my first CTF!

Greetings from Brazil!

_la_zu_li
Автор

Best content of all time! Never watched such an informative video on C Programming Language before! Each step was handcrafted to link with each other. Amazing stuff indeed!

sourabhchoure
Автор

Hello, I really liked your video, Thanks for sharing this content with us

josei.lastra
Автор

I love the music and intro but most importantly your way of explaining things are easy to follow-up. Thank you!! I really appreciate your work.

LinkLife
Автор

its funny how often i did the basics and still learn things. never even heard of the -Wall option. Those man pages are fucking unmotivating :P. they should have more color.

ingeborgschmidt-huser
Автор

Careful, he's a hero. Thank you so much!

hulla
Автор

wow, Im learning so much from these videos, altough I watch theme like 3 or four times, then I understand and it's really great!

itzhakramm