Tuesday, March 12, 2019

page

Posted by Rajnish Kumar

C Tutorial




This C tutorial series will help you to get started in C programming language. By learning C, you will understand basic programming concepts.
C is one of the most popular and widely used programming language, used to develop system application software.

Audience

This C tutorial series has been designed for those who want to learn C programming; whether you are beginners or experts, tutorials are intended to cover basic concepts straightforwardly and systematically.

Required Knowledge

To learn C Programming language you haven't required any previous programming knowledge, but the basic understanding of any other programming languages will help you to understand the C programming concepts quickly.

C Example

A quick look at the example of Hello, World! In C programming, and detailed description is given in the C Program Structure page.
/* Author: www.w3schools.in
Date: 2018-04-28
Description:
Writes the words "Hello World" on the screen */  
#include<stdio.h>

int main()
{
    printf("Hello, World!\n");
    getch(); //Use to get one character input from user, and it will not be printed on screen.
    return 0;
}
Program Output:
C program
The above example has been used to print Hello, World! Text on the screen.

0 comments:

Post a Comment