About 8,760 results
Open links in new tab
  1. Any cool programming project ideas?

    With coding skills and ambition like yours, you could make a big impact on the FOSS (free open-source software) community. Could be a good idea. Usually I work on small projects for a few …

  2. Simple Blackjack Program - C++ Programming

    Simple Blackjack Program I recently took an intro to c programming class and faced a large number of problems when coding my final project. To ease the pain for anyone going through …

  3. Recovering Code::Blocks C++ linker settings - C++ Programming

    Similar Threads Question about C++ Code::Blocks projects and editor settings and the C++ GVIM editor By FortranLevelC++ in forum C++ Programming Replies: 2 Last Post: 07-05-2013, …

  4. Editing output message of system ("pause") - C++ Programming

    Ok cool! Essentially, my program requirements are to make a grading program that follows these guidelines: 2 grades must be input If either of the two grades is below 40, the student …

  5. Display the names in a queue - C++ Programming

    Display the names in a queue I have an assignment that needs to display the names of customers to be served according to a sequence. Could anyone correct my coding to display the names …

  6. Creating a video playback software - C++ Programming

    P.S: I've only used command prompt for practice coding sessions. So far I've made a calculator, file storage management system (practicing creating, writing, editing files) /w a password, …

  7. GUI programming in C

    I don't do GUI programming. In the only little GUI programs I ever wrote I used pure Win32 API which is for masochists Others here might be more experienced though. In the meanwhile …

  8. Printing Receipt using C programming

    Ok guys, below are my C programme Coding. How can I print the food menu item on the receipt produced once an ordered is made, and can anyone help me to how to make a order …

  9. Pseudo to C Converter

    Popular pages Exactly how to get started with C++ (or C) today C Tutorial C++ Tutorial 5 ways you can learn to program faster The 5 Most Common Problems New Programmers Face How …

  10. memcpy () or for loop? What's faster? - C++ Programming

    Probably memcpy (). If it's just simply implemented, it'll just be a for () loop. If there is some optimization, then it will probably have it. 1) Use memcpy (), if that's what you're doing. Note …