Great tutorials Bucky clear concise. Basic programing is no longer a nightmare with this series
JB-hlid
Thanks! This helped me get started. ECLIPSE was too complictaed and DOS BOX and TURBO C was just a pain in the arse to work. This was the easiest way I found to get C up and running. I truly apprecaiate it.
SunnyHippies
I love your tutorials series, just so happened I found a clear and precise tutorial! Thanks !
febuary
One of the best tutorials out! Thanks alot
WishalSriRanganMU
jee it took me 5 minutes to get that its "\n" and not "/n" -.-'
lukehp
i love your tutorial, very clear, love it!! do more please please, this is what i really need
skytian
"Bucky is aweasome. Bucky is cool."
Indeed!
fernandoborges
One question is C language harder to learn than C++/Java? Was wondering cause I might take a programming course that uses C language and I don't know that one, only did C++ throughout high school as well as Java, and C#. I did a lot more Java in my first year university as well.
jetswhiteout
printf("Bucky is gay") ;
You can't hide forever Bucky . . . . Now the world will know.
Darth_Bateman
I like your professional acumen.Really nice and useful videos.
cric_geeks
Thank You Bucky Sir! youve made these easy to understand (for the lay person such as myself)
lucretiaxx
i know this isn't a problem, but just in case, if the command window is going away as soon as it's there, put getchar(); right before return 0;
like this:
int main()
{
printf("hello\n")
getchar();
return 0;
}
boobeebah
what is your opinion on the "Learn the Hard Way" approach, where you do not use an IDE or any things to aid you, but only use termina/powershell in order to learn exactly what you do?
shockwaver
I think it would be better if you went back to the zoomed in setting you had, it made it easier to read the code you wrote.
yunier
I am Curious, how would I go about using multiple escape sequences, say I wanted \a and \n I've tried it but only one of them works at a time. Would I have to make multiple printf fuctions to use multiple end sequences..?
robzombie
You're videos are awesome, keep it up.
vbn
hey ! your classes are great ! but when i went through the list of your " c language", i did;nt find any video related to "linked list ". will you help me in that ! please ?
vajeeramb
Hey, im completely new to programming and i wanted to find out if this also works for C++ as well? i tried the printf thing on the C++ but it said error so i assumed i made an error or does it generally work differently? thanks
meditationtube
Hi so I've been having a few issues with running CodeBlock like entering info onto the compiler or running the program based on the written code, so I need fixing these things?
dmtang
so if instructions are fetched to CPU from RAM, executed, written back to RAM, at what point and in what way is the output shown on the screen? is the output fetched from RAM?