Skip to main content

What is C Language?


C is a computer programming language. That means that you can use C to create lists of instructions for a computer to follow. C is one of the thousands of programming languages currently in use. C has been around for several decades and has won widespread acceptance because it gives programmers maximum control and efficiency. C is an easy language to learn. It is a bit more cryptic in its style than some other languages, but you get beyond that fairly quickly.

C is what is called a compiled language. This means that once you write your C program, you must run it through a C compiler to turn your program into an executable that the computer can run (execute). The C program is the human-readable form, while the executable that comes out of the compiler is the machine-readable and executable form. What this means is that to write and run a C program, you must have access to a C compiler. If you are using a UNIX machine (for example, if you are writing CGI scripts in C on your host's UNIX computer, or if you are a student working on a lab's UNIX machine), the C compiler is available for free. It is called either "cc" or "gcc" and is available on the command line. If you are a student, then the school will likely provide you with a compiler -- find out what the school is using and learn about it. If you are working at home on a Windows machine, you are going to need to download a free C compiler or purchase a commercial compiler. A widely used commercial compiler is Microsoft's Visual C++ environment (it compiles both C and C++ programs). Unfortunately, this program costs several hundred dollars. If you do not have hundreds of dollars to spend on a commercial compiler, then you can use one of the free compilers available on the Web.




Comments

Popular posts from this blog

Facts about C

C was invented to write an operating system called UNIX.   C is a successor of B language which was introduced around the early 1970s.   The language was formalized in 1988 by the American National Standard   Institute (ANSI).   The UNIX OS was totally written in C. Today C is the most widely used and popular System Programming Language.   Most of the state-of-the-art software have been implemented using C.   Today's most popular Linux OS and RDBMS MySQL have been written in C.

What is java programming?

Java is a programming language that produces software for multiple platforms. When a programmer writes a Java application, the compiled code (known as byte code) runs on most operating systems (OS), including Windows, Linux and Mac OS. Java derives much of its syntax from the C and C++ programming languages. Java is Object oriented programming language. Java is a platform independent programming language. Java is use in most operating system and many application. Java provide JVM. That is call as java virtual   machine. That is java compiler. So that is java programming language.

What is Big Data?

Big data is the big amount of data in simple word. As one of the most “hyped” terms in the market today, there is no consensus as to how to define big data. The term is often used synonymously with related concepts such as Business Intelligence ( BI) and data mining. It is true that all three terms are about analyzing data and in many cases advanced analytics. But big data concept is different from the two others when data volumes, number of transactions and the number of data sources are so big and complex that they require special methods and technologies in order to draw insight out of data (for instance, traditional data warehouse solutions may fall short when dealing with big data). This also forms the basis for the most used definition of big data, the three V: Volume, Velocity, and Variety.  Volume: Large amounts of data, from datasets with sizes of terabytes to zettabyte.   Velocity: Large amounts of data from transactions with high refresh rate resu...