Today i am learn this program language so i am explain a program language. any misstack comment this blog page i will explain better.
This my own written words so some misstake in bettiven so ajusted
Example program
{
print f ( “NAME”, REGNO,"ADDRESS")
}
Program :
Program is defined as a sequence of instrections written to perfrom a well defined task with a computer
Requirement analysis is a detial stady of a various oprator perfrom by the program and the relationship with is output of program in the acerion with user requirement
The step is a most improtent step in a program cycle
The program desgin is tranfraed into computer program
Testing and debugging is a process of dedatting correcting error in the program
The main aim of this process is to make the program to produce the expect result
Documentation is a written detaited descrpion about the program
Maintanance is a defin as a process of modifing the program to carryout one or more requirement
void main ()
{
clrscrc ;
flout P,N,R,t simple , compound;
Print f ( "enter the principal amount\n");
Scan f ( “%f” , &P );
Print f ( “enter the rate of interest\n” );
Scan f ( “%f” , &R );
Print f ( “enter the period of year\n” );
Scan f ("f" , &N );
Simple = P*N*R/100;
Compound = P*pow (1+R/100N)-P;
Print f ("simple intrest is \n\n RS% 6.2 f" , simple);
Print f ("\N");
Print f ("compount intrest is\n\n RS% 6.2 f" , compound);
Print f ("\n");
getch ();
}