Closed Thread
Results 1 to 6 of 6

Thread: C programming video tutorial

  1. #1
    salimm is offline Newbie
    Join Date
    Mar 2010
    Posts
    1
    Rep Power
    0

    Thumbs up C programming video tutorial

    Some c programming video tutorial for beginners. I have watched half of them it looks very good.

    EngineerForum.Net .::. C Programming

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    dcs
    dcs is offline Guru
    Join Date
    Mar 2008
    Posts
    775
    Rep Power
    23

    Re: C programming video tutorial

    Meh. Rookie teacher teaching rookies to be rookies.

  4. #3
    carl is offline Newbie
    Join Date
    Mar 2010
    Posts
    1
    Rep Power
    0

    Re: C programming video tutorial

    They were really helpful videos for me. Thanks for sharing with us. There are also some other tutuorials on the website.

  5. #4
    cod3b3ast's Avatar
    cod3b3ast is offline Learning Programmer
    Join Date
    Dec 2009
    Posts
    74
    Rep Power
    0

    Re: C programming video tutorial

    Quote Originally Posted by dcs View Post
    Meh. Rookie teacher teaching rookies to be rookies.
    What did you see that made him seem like a rookie? What do you look for in a good tutorial?
    I don't document code. If it was hard to write, it should be hard to read

  6. #5
    Join Date
    Jul 2009
    Location
    Santa Clarita, CA
    Posts
    2,111
    Blog Entries
    47
    Rep Power
    31

    Re: C programming video tutorial

    Quote Originally Posted by cod3b3ast
    What did you see that made him seem like a rookie? What do you look for in a good tutorial?
    Bucky is a n00b. You can find his main channel playlists here, his C++ 'tuts' are particularly painful. He's the source of wonderful treasures from video #2 for C++:

    Quote Originally Posted by Bucky
    [In regards to #include] Now, this is one of those things that you don't have to really know what it does in C++, you just gotta remember to put it in there every time.
    Understanding preprocessor directives is key in learning C and C++.


    Quote Originally Posted by Bucky
    Every statement ends with a semicolon.
    Except statements that have nested curly braces, like for or if statements...


    Quote Originally Posted by Bucky
    I'm gonna have you guys add in one more thing, kind of like this [see above] that you don't really need to know what it does but you need to add it in and that is called "using"... and then type in the word "namespace", then s-t-d, then add in my semicolon. And in case you guys are curious again, what this does it pretty much tells C++ to use all the basic, standard stuff that C++ uses.
    Uhh... no, no it doesn't. Using is a keyword that handles importing of namespaces or parts of namespaces into the current namespace. Granted, teaching complete newbies about namespaces is probably not a very good idea, but saying something more accurate but still ambiguous, like "using namespace std makes it so instead of having to type std::cout, all you have to type is cout" would be great.


    Quote Originally Posted by Bucky
    Our two less-than signs [<<] is the insertion operator
    No, it's an overloaded binary left-shift operator.


    Quote Originally Posted by Bucky
    The first thing that we want to do is "system", and then in the quotation marks we want to put "pause"
    Yes, he just recommended using system("pause"). Need I say more?


    Quote Originally Posted by Bucky
    The next thing you're gonna want to do is put in "return 0", and what this pretty much does is end the main function. Since C++ is gonna run through this "go, go, go", but it's not gonna know where to end
    C++ has never required return 0 at the end of main, that is implicit. Further, the return statement returns a number from the current function, it has nothing to do with ending the program.

    So yeah... there's Bucky!
    Wow I changed my sig!

  7. #6
    cod3b3ast's Avatar
    cod3b3ast is offline Learning Programmer
    Join Date
    Dec 2009
    Posts
    74
    Rep Power
    0

    Re: C programming video tutorial

    Oh wow. I guess I should have watched a little more of the tutorials. Thank you for the explanation, Zeke!
    I don't document code. If it was hard to write, it should be hard to read

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. VB.NET YouTube Video Downloader Tutorial
    By iluxon4ik in forum Visual Basic Tutorials
    Replies: 1
    Last Post: 06-29-2010, 08:22 AM
  2. C++ Video Tutorial
    By Vswe in forum C and C++
    Replies: 3
    Last Post: 07-17-2009, 07:13 AM
  3. Website for video tutorial
    By chrisstyris in forum Website Design
    Replies: 6
    Last Post: 02-27-2009, 08:26 PM
  4. video tutorial
    By terabite in forum Java Help
    Replies: 7
    Last Post: 06-25-2008, 07:02 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts