0% found this document useful (0 votes)
36 views2 pages

C Language Tutorial For Beginners

The document provides an overview of the C programming language, describing its history, features, uses and providing an example of a simple "Hello World" program; it notes that C was created in 1972 and is a procedural, structured programming language widely used for system applications and embedded programming. Key features highlighted include being simple, portable, with support for pointers, recursion and memory management.

Uploaded by

Pirzada Swati
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
36 views2 pages

C Language Tutorial For Beginners

The document provides an overview of the C programming language, describing its history, features, uses and providing an example of a simple "Hello World" program; it notes that C was created in 1972 and is a procedural, structured programming language widely used for system applications and embedded programming. Key features highlighted include being simple, portable, with support for pointers, recursion and memory management.

Uploaded by

Pirzada Swati
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 2

C Language Tutorial for Beginners –

Do you want to learn C Programming in easy way?


JavaTpoint provide the tutorial for C beginners and professionals. JavaTpoint describe the
C tutorial in Four steps are as follow:-
1. What is C programming language?
C language is a Basic language of all programming language. It is also called mother language.
C language is used for creating system application that direct interface to hardware devices
such as drivers, kernals etc.

1. Mother language
2. System programming language
3. Procedure-oriented programming language
4. Structured programming language
5. Mid level programming language

2. History of C Programming:-
C language was developed in 1972 by dennis Ritchie at bell labouratories of AT&T located in
U.S.A. there are many languages come before C Programming language BCPL, B, Traditional
C, and K & R C etc.

3. Features of C language:-
There are many features of C Programming language are as follow:-
• Simple
• Machine Independent or Portable
• Mid-level programming language
• structured programming language
• Rich Library
• Memory Management
• Fast Speed
• Pointers
• Recursion
• Extensible

4. Uses of C programming language

There Uses of C Programming Language are as follow.


1. Many Modern languages follow C Syntax 
2. Embedded Programming 
3. Want to develop your own Linux by editing the kernel? 
4. Driver Programming in Windows 
etc.
 
First C Program Example:-
#include<stdio.h>
#include<conio.h>
void main()
{
printf(“Hello C Language”);
getch();
}

Output:-

Description:-
#include<stdio.h> input out library function printf() is defined in <stdio.h>.
#include<conio.h> defines console input output library functions.
void main() tells the compiler program is start here.
printf() this function is used to print the data on console.
getch() it passes to a single character value.

Printf() and Scanf() function in C programming language:-


These functions are used to input output functions.
printf(): this function is used for to print a given statement on output window.
Syntax:- printf(“format of sring”,argument_list);
Format of string: %d for (integer), %c for (character), %s for (string), %f for (float) etc.
scanf(): it is used for to read the input data from run time or console.
To see the more example of given function on JavaTpoint.
Visit- http://www.javatpoint.com/printf-scanf.

You might also like