Answer Posted / guest
C is a language that can be used to develop both 'user
applications' and 'operating systems'. It allows you to have
access to the machine language itself if you so choose (inline
asm). Most of the unix operating system is written in C. It is
a great language to start with (IMHO) because it contains the
basic concepts of computer programming. As well as giving you
a feel for what actually goes on in the machine itself. Higher
level languages abstract you from the machine, usually (again
IMHO) focusing more on the rapid development of Applications.
Remembering that C++ was originally developed as C with
classes, learning C is (again IMHO) almost a pre-requisite for
learning C++.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
When should the const modifier be used?
Explain the advantages and disadvantages of macros.
How can I run c program?
What is meant by type specifiers?
What is oops c?
What is a function in c?
What is the explanation for cyclic nature of data types in c?
What is an auto keyword in c?
What is quick sort in c?
What is the difference between printf and scanf in c?
FILE PROGRAMMING
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is wrong with this code?