Facebook – https://www.facebook.com/TheNewBoston-464114846956315/
GitHub – https://github.com/buckyroberts
Google+ – https://plus.google.com/+BuckyRoberts
LinkedIn – https://www.linkedin.com/in/buckyroberts
reddit – https://www.reddit.com/r/thenewboston/
Support – https://www.patreon.com/thenewboston
thenewboston – https://thenewboston.com/
Twitter – https://twitter.com/bucky_roberts
Amazon Auto Links: No products found.
Thanks a lot, man! I really enjoyed all 58 videos. I learned a lot and always laughed when you said funny stuff. Again, thanks a lot.
For those who finally made it like I did:
#include
#include
#include
void congrats(char*);
int main () {
char finished;
char yourname[25];
printf(“Please enter your name:n”);
gets(yourname);
Startover: printf(“Have you finished Bucky’s C Programming Tutorial? (y/n)”);
scanf(” %c”, &finished);
switch (finished){
case ‘n’: printf(“Sorry to hear that, %s.n”, yourname);
break;
case ‘y’: congrats(yourname);
break;
default: printf(“Invalid entry, try again.n”);
goto Startover;
}
return 0;
}
void congrats (char* yourname){
FILE *fPointer1;
fPointer1=fopen(“Certificate.txt”,”w”);
fprintf(fPointer1,”Congrats %s the programmer, find your certificate in the program folder. Bucky is awesome!”, yourname);
fclose(fPointer1);
///////////////////////
char str[200];
FILE *fPointer2;
fPointer2 = fopen(“Certificate.txt”,”r”);
while(!feof(fPointer2)){
fgets(str,200,fPointer2);
printf(“%sn”,str);
}
fclose(fPointer2);
return;
}
If I want to continue my journey in C, where should I go next? I want to move to GUI and for advance topics of C and I do not want to change the language.
thanks man FYI i’ve just downloaded all the 58 videos.
i am pretty familiar with c++ and C# pretty well
but i needed to learn C in depth because i started writing code for embedded systems in C
though i was familiar with other high level languages ur videos had helped me a lot.
Thanks man. I mean it
all i can say is, THANK YOU! :’)
what you have done is basically pass a reference to a variable BY VALUE.
Hey bucky….I just wanna say thanks for making an easy+simple yet beneficial videos….you’re the real MVP fam!!
bye bucky
Thanking you 58 times for being one of the best teachers I had. And of course, I havent forgotten to subscribe 🙂
?i want to understand how to call a function using loops anyone help…
printf(“History was made here (cries)n”);
Thanks Sir Bucky Roberts!!!
Its been an wonderful journey through the wilderness of C.
I appreciate your hard work and keep it up!!!
Looking forward to your other tutorials.
And once again thanks!!!
Many thanks brother, Initially i saw C language as something i would never get along with but after watching the tutorials am glad i can run a program. Thanks alot!!!!!!!!!!!!!!!!!!!!!
thank you so much bucky i have completed it all today <3 big thanks to you <3
so i finally completed this video series.
Thank your videos.
You’re one of kind, man. The best teacher I ever had
You have taught C way more clearer than my college professor lol. Good job!
It’s been an honor
Thanks a lot Bucky…!!!
KEEP UP WITH THE GREAT WORK MAN THNAKS
#2018
My C final is Wednesday! Ive spent the last several days with ya man and lemme tell ya, I feel 1000%d more confident! Thanks for this man, its awesome!
Your videos were awesome. Make a tutorial for c++ also.
Very good tutorial. I watched through the whole playlist and followed along. I’m glad I did this before uni. I see you have python, c++ and other tuts; I’ll watch them too. But your website seems to be down. Your source codes are available on github but I don’t know how to use that. (Nevermind, you have a github tutorial as well)
Ready to take on the world! B)
Once we declared a pointer, I thought we dont need to put an asterisk next to it anymore in the future. so why did you put an asterisk next to i when for *i = 64; ???
lol I started with Java but with your tutorials and the new understanding of C I can say, stuff in C just makes way more sense too me.
thanks for this course , I learned a lot + how far 10 $ will take you this year 😉 ,
Thank you so much for your accurate and relaxed lessons, I may be 3 years late but in 3 days I watched all 58 vids and I must say you genuinely helped me from having no idea what C is to actually using it for different apps. Can’t express the size of my gratitude!
This is so helpful!
Thanks Bucky! I learned a lot and ill probably review all this again.
I marathoned these in prep for an exam i have in 3 hours. THANK YOU BUCKY WE MADE IT TO THE END!
Also, pointers finally make sense. Thanks!!
dang after these 58 videos I feel like I can call you a homie 🙂
3 words
printf(” I Love YOU n”);
int main(){
char name[100]=Buckey Is Awesome I love Your Videos Thank you ;
printf(” %s n” ,comment);
return 0;
}
small and easy code I love you man 🙂
Will 100% watch your other videos