Write a program which gives 5lines of information about C language.
1
Expert's answer
2011-08-02T14:21:59-0400
#include <iostream> using namespace std;
int main() {
cout << "C is a general-purpose computer programming language" << endl; cout << "developed between 1969 and 1973 by Dennis Ritchie " << endl; cout << "for use with the Unix operating system. Although C was" << endl; cout << "designed for implementing system software, it is also" << endl; cout << "widely used for developing portable application software." << endl;
Comments
Leave a comment