Skip to main content

History And First "Hello World!" Program In C Language...

History Of C Language :  

C programming language was developed in 1972 by Dennis Ritchie at bell laboratories of AT&T (American Telephone & Telegraph), located in the U.S.A.

Dennis Ritchie is known as the founder of the c language. It was developed to overcome the problems of previous languages such as BCPL, B etc.


Why C Programming Language Was Named C ? : 

The reason why the language was named “C” by its creator was that it came after B language. Back then, Bell Labs already had a programming language called “B” at their disposal. 

The B language, a high-level language created by Thompson, was itself an implementation of the programming language BCPL designed by Martin Richards of Cambridge University.



Hello World! Program :

First Create file_name.c  file in your editor (file_name is name of your file).



In that file write following code : 


Output :




What will in the next blog ?

1. Installation of VS Code
2. Installation of GCC compiler


Comments

Post a Comment

Popular posts from this blog

Privacy Policy of Test Series App

Privacy Policy Pratik the android developer built the Test Series app as a Free app. This SERVICE is provided by Pratik the android developer at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Test Series app unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable information. The info...

Privacy Policy for Aniruddha Bapu Darshan App

Privacy Policy Pratik the android developer built the Aniruddha Bapu Darshan App as a Free app. This SERVICE is provided by Pratik the android developer at no cost and is intended for use as is. This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service. If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy. The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Test Series app unless otherwise defined in this Privacy Policy. Information Collection and Use For a better experience, while using our Service, I may require you to provide us with certain personally identifiable infor...

Difference between Compiler and Interpreter

  Compilers and Interpreters are programs that translate a source code (a file that contains the program) to a machine code that can be understood by a processor. A compiler translates source code as a whole and performs various optimization techniques before mapping it to executable machine code. But, an interpreter translates source code as needed in runtime - it maps source code to machine code almost immediately. Role of Compiler • Compilers reads the source code, outputs executable code, • Translates software written in a higher-level language into instructions that computer can understand. • It converts the text that a programmer writes into a format the CPU can understand. The process of compilation is relatively complicated. • It spends a lot of time analyzing and processing the program. • The executable result is some form of machine-specific binary code, Role of Interpreter • The interpreter converts the source code line-by-line during RUN Time. • Interpret completely ...