Ad Home

Magazine

Random Posts

Videos

Recent Posts

Culture

Wednesday 16 August 2017

Source Code...


Source code is the fundamental component of a computer Program that is created by a programmer. It can be read and easily understood by a human being. When a programmer types a sequence of C Language statements into Windows Notepad, for example, and saves the sequence as a text file, the text file is said to contain the source code. 

     It is Source Code......!                           #include<iostream>
#include<conio.h>
int caal(int);
using namespace std;
int main()
{
int n,s;
cout<<"Enter valu =";
cin>>n;
s=caal(n);
cout<<s;
return 0;
}

0 comments:

Post a Comment