About 15,000,000 results
Open links in new tab
  1. ToDo App in C Language - GeeksforGeeks

    Jun 8, 2021 · This program involves the basic concepts like variables, data types, structure, string, loop, inserting a node into the linked list at any position, deleting a node from the linked list at any position, linked list traversal, etc. The approach followed for constructing the ToDo application is as follows:

  2. A To-Do-List using Basic C programming including Linked lists, …

    INTRODUCTION The program “TO DO LIST” is a C program coded on a Unix platform and gcc compiler. It is a text based program. It is basically used to keep a track of all you to do activities like experiments and assignments. The data structure used in this project is Link List.

  3. Building A Simple To-do List In C – peerdh.com

    Oct 6, 2024 · Creating a simple to-do list application in C is a great way to practice your programming skills. This project will help you understand basic data structures, file handling, and user input. Let’s break down the process step by step.

  4. Create To-Do List Application in C - codewithfaraz.com

    Aug 19, 2024 · Creating a To-Do List application is a great way to practice C programming. This project is simple yet covers key concepts like arrays, strings, and functions. In this blog, we'll guide you step-by-step on how to build a To-Do List application in C programming.

  5. Data Structure Programs using C and C++ - Includehelp.com

    Data Structure Examples / Programs using C and C++ - This section contains solved programs using C and C++ on Data Structure concepts like Sorting (Bubble Sort, Insertion Sort, Selection Sort), Searching (Linear/sequential Search, Binary Search), Stack Implementation using Array, Linked list, Link List Implementation (Singly, Doubly Linked List ...

  6. Creating a Simple To-Do List in C - Surfside Media

    Creating a simple to-do list in C is a practical exercise that involves user input, arrays, structures, and decision-making with switch statements. This guide introduced the concept of a to-do list, explained how it works in C, and provided sample code to demonstrate its usage.

  7. GitHub - dishabehere/To-Do-List-Application-in-C: To-Do List ...

    To-Do List Application in C This repository contains a simple yet powerful To-Do List application written in C, designed to help users manage their tasks efficiently. The application leverages fundamental C programming concepts, including dynamic memory allocation, file I/O, structures, and pointers, to provide a robust command-line interface ...

  8. A DSA project using Linked List in C Language - GitHub

    Welcome to the TO-DO List application, where procrastination meets productivity! Built in C with Binary Search Trees (BST) and Linked Lists, this command-line tool helps you tackle tasks without judgment—because we all know that “organize sock drawer” is …

  9. Creating A Simple To-do List Application In C – peerdh.com

    Oct 11, 2024 · Building a simple to-do list application in C is a great way to practice your programming skills. This project will help you understand basic data structures, file handling, and user input. Let’s break down the steps to create a functional command-line to-do list.

  10. ToDo List application in C, how to read from file and save to an …

    Oct 4, 2022 · Your program is a program with express purpose of maintaining a list of TODO lines: it is OK to make that a global object. Every function of your program works on that data. Next, break the task down — make some useful functions: Read a line from file