Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

how to learn c program day wise

+2 votes
asked 5 days ago by saikumar
Hi i am sai kumar  i just completed my 12th class i want to start c programm

1 Answer

0 votes
answered 3 days ago by Peter Minarik (101,530 points)

Start with online tutorials to understand the basics. Here are some:

  1. https://www.w3schools.com/c/
  2. https://www.learn-c.org/
  3. https://www.geeksforgeeks.org/c/c-programming-language/
Then, start doing some easier exercises and learn along the way. Here are some ideas:
  1. Guess my number: the computer "thinks of" a number, and the user has to guess it by entering a number, and the computer will tell if the number is less or equal to it.
  2. List all the primes up to N.
  3. Create a hangman game.
  4. Create a catalog tool, for instance, car parts, or a car rental system, or a store, etc.
  5. Create a tool that tracks who spent how much in that month and how to share the expenditures (this can be a pretty useful stuff in a household. It would save a lot of time for your parents if they do not have a shared bank account. I wrote one of these stuff and reduced my monthly budget calculation time to just a few minutes.
The point is, to start to put your skills into practical use, either through toy projects or actual projects that make your (or your family's/friends') everyday life easier.
You can always keep the C/C++ reference handy, such as
  1. https://cppreference.com/
  2. https://cplusplus.com/reference/
Good luck and enjoy your journey!
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...