defin c++ and example
Answers
Answered by
1
C++ is general purpose project - oriented programming language devloped by Bjarne Stroustrup , and is extension of C language. It is therefore possible to code C++ in a " C style " or "an object oriented style".
Hope this helps you If it helps please mark it as brainliest answer
Hope this helps you If it helps please mark it as brainliest answer
komal70:
please mark it as brainliest answer
Answered by
1
aloha!
»»————- ★ ————-««
C++ is a programming language just like any other programming language such as java, python etc.
{if you are new to C++ it will appear interesting but little hard. }
for example,
you may make a program by yourself :
★ program to find area.
★ program to check whether someone is eligible to vote.
★ identification of odd or even.
★ you can even make a quiz.
here is a small program that i have made for you to understand the basics clearly.
program to find the sum:
#include<iostream.h>
#incude<conio.h>
int main()
{
int x = 6;
int b = 2;
int sum = x + b;
cout<<sum;
return 0;
}
and you will see 8 on the screen after you run the program.
»»————- ★ ————-««
hope it helps :)
»»————- ★ ————-««
C++ is a programming language just like any other programming language such as java, python etc.
{if you are new to C++ it will appear interesting but little hard. }
for example,
you may make a program by yourself :
★ program to find area.
★ program to check whether someone is eligible to vote.
★ identification of odd or even.
★ you can even make a quiz.
here is a small program that i have made for you to understand the basics clearly.
program to find the sum:
#include<iostream.h>
#incude<conio.h>
int main()
{
int x = 6;
int b = 2;
int sum = x + b;
cout<<sum;
return 0;
}
and you will see 8 on the screen after you run the program.
»»————- ★ ————-««
hope it helps :)
Similar questions