C program: 1. Write a c program to print "hello world"........ Coding........ # include <stdio.h> #include<conio.h> int main ( ) { printf ( "Hello World! " ) ; getch ( ) ; return 0 ; } Output: Hello World!
Posts
Languages
- Get link
- X
- Other Apps
Introduction to C: The C programming is a popular and widely used programming language for creating computer programs. C is a general purpose structured programming languages that is powerful, efficient and compact. It was developed at AT&T's bell Laboratories of USA in 1972. Why C Language is so important? Oracle is written in C. Core libraries of android are written in c. My SQL is also written in c language. Web browser, Unix operating System is also created by c language. C cover basic features of all programming. History of C Language: C programming was developed in 1972 by Dennis Ritchie at bell Laboratories of AT&T(American telephone &telegraph),Located in the USA. Dennis Ritchie is known as founder of the c language. It was developed to overcome the problem of previous languages such as B, B CPL etc. Initially C was developed to be used in UNIX Operating System. It Inherits many Features of previous languages. The following...