Professional trainer here, and your videos on C are really amazing. You have covered all the features of C language in a very succinct manner.
@PortfolioCourses2 жыл бұрын
Thank you very much for the positive feedback, that means a lot to me especially coming from someone who trains people. :-)
@lradhakrishnarao9022 жыл бұрын
@@PortfolioCourses your welcome 🙂
@Litehamer Жыл бұрын
Far better than the Udemy course I paid for. Wish I found you earlier but glad I’ve found your videos
@PortfolioCourses Жыл бұрын
I'm glad you found the channel, welcome aboard! :-)
@ebube. Жыл бұрын
I'm watching your videos as a beginner and how you simplify these concepts always blows me away🤯... Thank you so so much!!!
@PortfolioCourses Жыл бұрын
You're very, very welcome, I'm so glad to hear the videos help you out! :-)
@Solukus-com2 жыл бұрын
Wednesday June, 29, 2022, 5:55 a.m. E.S.T Hi there, it's nice to have a tutorial from E.S.T. timeline. I was checking the lotto max winning numbers and have no idea how I ended up here. I just watched couple of your tutorials and subscribed. You got yourself a student.
@PortfolioCourses2 жыл бұрын
Haha well however you got here, I'm glad you found the channel! Welcome aboard! 😀
@AibekDandaev2 жыл бұрын
@@PortfolioCourses Thanks for your lessons sir! they're very useful
@PortfolioCourses2 жыл бұрын
@@AibekDandaev You're very welcome! 😀
@deshneeti11382 жыл бұрын
Amazing content ❤️ Keep it up 👍 Love from India ❤️
@PortfolioCourses2 жыл бұрын
Thank you so much! 🙂❤
@StunMuffin11 ай бұрын
Thank you for the lessons are perfectly help. And professional...❤🎉
@mek0592 жыл бұрын
I just found the program below and I'm trying to figure out why there is no int keyword between register and a? And why the return says -1 and not 0 as always? int main() { register a = 80; auto int b; b = a; printf("%d ",a); printf("%d",b); return -1; }
@PortfolioCourses2 жыл бұрын
Great questions! 🙂 If no type is provided, some compilers will default the type to int, but it depends on the compiler: stackoverflow.com/a/11064331. And returning 0 from a main function will have the program exit with a 'success' status, returning -1 will have the program exit with an 'error' status so it is a bit unusual to see it used here as the return value.
@mek0592 жыл бұрын
@@PortfolioCourses Thanks for the info!
@jaekyung3725 Жыл бұрын
@@PortfolioCourses Can you please explain how we choose return 0 and return -1
@PortfolioCourses Жыл бұрын
@@jaekyung3725 This video may help to answer your questions Jasmin. 🙂 kzbin.info/www/bejne/eXPJmZaIhrujnJo
@jaekyung3725 Жыл бұрын
@@PortfolioCourses thank you so much your videos are so helpful
@jayjenous76012 жыл бұрын
Is this course like the 6 hours one i just watched?
@PortfolioCourses2 жыл бұрын
Great question Jay! In these videos in the C Programming Tutorial playlist, I go into more detail on some of the same topics covered in the 6 hour course. So there will be a lot of overlap with the full course, but we'll go deeper into the different concepts too. 🙂