Algorithms in C language.....

Joined
Apr 29, 2008
Messages
6
Reaction score
0
The term algorithm in C and in any kind of language or in a matter of programmatically use, denotes the way to approach a problem and provide a solution. Thus, programmatically it signify the structure of your programmatic solution e.g

#include<iostream.h>

void function definition();

void main()
{
variable declaration;

functions(int n);//call of functions
}

void function (int m)
{
implementation;
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top