Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Subprograms

Subprograms are the fundamental building blocks of programs.

The two fundamental kinds of subprograms are,

  1. Functions
  2. Procedures

1. Functions: Functions return values , such that,

int show(int a)
{
return a;
}

2. Procedures: Procedures do not return values, such that

void show(int a)
{

}
Video lecture on Subprogram in Hindi
Categories PPL

3 thoughts on “Subprograms”

  1. When I originally commented I clicked the -Notify me when new comments are added- checkbox now whenever a comment is added I receive four emails sticking with the same comment. Possibly there is any way you can get rid of me from that service? Thanks!

    http://kyakarehindimei.com/v8lf

Leave a Comment