मराठी
महाराष्ट्र राज्य शिक्षण मंडळएचएससी विज्ञान (संगणक विज्ञान) इयत्ता १२ वी

Explain the Syntax of C++ Program Structure with Example. - Computer Science 1

Advertisements
Advertisements

प्रश्न

 Explain the syntax of C++ program structure with example. 

थोडक्यात उत्तर

उत्तर

 1) A typical C++ program contains 4 sections as shown in following figure. These sections may be placed in different code files and then compiled independently or jointly.

Include files 
Class declaration 
Class functions definitions 
Main function program 

                Structure of C++ program 

2) It is a common practice to organize a program into three separate files.
3) The class declarations are placed in a header file and the definitions of the member go in other file.
4) This approach enables the programmer to separate the abstract of the interface from the implementation details.
5) Finally the main program that uses the class is placed in third file, which includes the previous two files as well as any other files required. 

Example : 
# include <iostream.h>
# include <conio.h>
# include <math. h>
class triangle
{
private:
float a, p, x, y, z;
public :
void accept ()
{
cout <‘’Enter three sides of triangle’’;
cin >> x>> y>>z;
}
void compute()
{p = x+y+z;
double & = P/2;
a = sqrt(s*(s-a)*(s-b)*(s-c));
cout <<‘’Area’’<<a;
}
};
void main()
{clrscr();
triangle t1;
t1.accept();
t1.compute();
getch();
}

shaalaa.com
C++ Programming
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2018-2019 (February) Set 1
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×