C-Programming is an imperative (procedural) computer programming language, supporting structured programming, lexical variable scope and recursion.
Learn C Programming Lesson 0 - download eclipse for C/C++
Download Eclipse for C Download Dev C/C++ for C Download Code Blocks for C
Write your first program
/* Hello World program */
#include<stdio.h>
main()
{
printf("Hello World");
}
Read Article
Variables AKA fields
In the C Programming programming language, variables are devices that are used to store data, such as a number, or a string of character data.
int x;
int a, b, c, d;
char letter;
float the_float;
double a1;
Read Article
In this video you will learn how to program in the C programming language!