About 30,400,000 results
Open links in new tab
  1. Subroutine, Subroutine nesting and Stack memory

    Aug 29, 2023 · In computer programming, Instructions that are frequently used in the program are termed Subroutines. This article will provide a detailed discussion on Subroutines, Subroutine …

  2. What is the difference between a function and a subroutine?

    In computer programming, a subroutine is a sequence of program instructions that perform a specific task, packaged as a unit. This unit can then be used in programs wherever that …

  3. Understanding Subroutines in Computer Programming

    Jan 15, 2025 · Subroutines are fundamental in computer programming, helping developers write organized, efficient, and maintainable code. This guide explains subroutines, their benefits, …

  4. Defining and calling subroutines — Ada Computer Science

    The use of a main subroutine is a widely used convention in programming and in particular in procedural programming. When used, the main subroutine is the starting point for the …

  5. What Are Subroutines? A Deep Dive Into How They Work

    Mar 29, 2025 · To begin with, what are subroutines exactly? In simple terms, they are smaller blocks of code designed to perform specific tasks within a larger program. Instead of rewriting …

  6. Subroutines - Programming concepts - AQA - GCSE Computer …

    The purpose of a subroutine is to perform a specific task. This task may need to be done more than once at various points in the main program. Subroutines are usually small in size, which...

  7. What Are Subroutines - Online Tutorials Library

    Jul 24, 2021 · Subroutines are programs that are used by other routines to accomplish a particular task. A subroutine can be called from any point within the main body of the micro-program. …

  8. A subroutine is the term given to a named ‘out of line’ block of code that can be run from a main program (or main routine) or from another subroutine simply by using the name. It is good …

  9. Programming: Subroutines (Procedures/Functions) - Study Rocket

    Subroutines make a program easier to understand, test, and debug. A procedure is a type of subroutine which simply performs a task without returning any value. A function is a type of …

  10. Learn Programming: Subroutines (Functions and Procedures)

    Nov 19, 2021 · One technique to create modules is defining subroutines (or subprograms), a generic term that combines the concepts of functions, procedures and methods. Learn about …

  11. Some results have been removed