Write a short note on C++. Explain how C++
is superior to BASIC
Answers
Answered by
5
C++ is a programming language developed by Bjarne Stroustrup in 1979 at Bell Labs. C++ is regarded as a middle-level language, as it comprises a combination of both high-level and low-level language features. It is a superset of C, and that virtually any legal C program is a legal C++ program. C++ runs on a variety of platforms, such as Windows, Mac OS, and the various versions of UNIX.
#include <iostream>
using namespace std;
int main() {
cout << "Hello!";
return 0;
}
Answered by
0
Answer:
here's your answer mate
mark me as brainliest
Attachments:
Similar questions