answersLogoWhite

0

the main() function,the#include Directive, the variable definition. function prototype, program statements, the function definition,program comments and braces are the components of program in C++

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

What components of program state are shared across threads in a multithreaded process?

Obviously Heap Memory


What are disadvantages of robotic systems?

in case of automatic robotic systems, the system may get failed if the electronic components do not work properly or sudden damage due to over heating, sudden change in electrical characteristics of components, of program gets corrupted


Highlight the steps involve in writing a functional program?

Consult or think about the requirements; plan the general design; write your program; test it; correct and test (probably several times) until it works.In a larger project, you will probably do the above for each individual component at a time, i.e., you will be adding components gradually.Consult or think about the requirements; plan the general design; write your program; test it; correct and test (probably several times) until it works.In a larger project, you will probably do the above for each individual component at a time, i.e., you will be adding components gradually.Consult or think about the requirements; plan the general design; write your program; test it; correct and test (probably several times) until it works.In a larger project, you will probably do the above for each individual component at a time, i.e., you will be adding components gradually.Consult or think about the requirements; plan the general design; write your program; test it; correct and test (probably several times) until it works.In a larger project, you will probably do the above for each individual component at a time, i.e., you will be adding components gradually.


What are the basic components of a program?

The main 2 components of any program in general are... 1> Program code (any programming language) 2> Data (numbers/text/graphics) The programming language uses code to manipulate: store/calculate/interrogate/display the data. The data could, in fact, be located anywhere... -inside of the program's own 'internal' structure such as: data statements/array structure/variables list/-etc. -or else, inside of an 'external' database file: (.txt)/(.dat)/(.csv)/-etc.


What is Processor in c program?

The processor is the machine's CPU (central processing unit). It has nothing to do with the C language itself -- at best it is an implementation detail (the compiler can take advantage of the CPU's specific features to optimise code). In terms of programming, the processor is a concept. All non-trivial programs have at least four major components: input, processing, output. The bulk of the work is carried out by the processor. However, even the individual functions of a program can also be broken down into similar components: preconditions, processing and postconditions.