Answer Posted / vamc
C (pronounced /ˈsiː/ see) is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.[2]
Although C was designed for implementing system software,[5] it is also widely used for developing portable application software.
C is one of the most popular programming languages of all time[6][7] and there are very few computer architectures for which a C compiler does not exist. C has greatly influenced many other popular programming languages, most notably C++, which began as an extension to C.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Differentiate Source Codes from Object Codes
Explain the advantages of using macro in c language?
For what purpose null pointer used?
What is the explanation for modular programming?
Explain the use of fflush() function?
What does a pointer variable always consist of?
What is pointer in c?
Tell me with an example the self-referential structure?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is size of union in c?
Why are algorithms important in c program?
What is a sequential access file?
How are pointers declared in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain what is the use of a semicolon (;) at the end of every program statement?