C Tutorial - Operators in C

An operator is a symbol that operates on a certain data type and produces the output as the result of the operation. In C, you can combine various operators of similar or different categories and perform an operation. In this case the C compiler tries to solve the expression as per the rules of precedence.

[…]

C Tutorial - Constants, Variables and Data Type Modifiers

Constant
A constant can be defined as “a quantity that does not change during the execution of a program”.

#include <stdio.h>
 
void main(void)
{
int a = 10;
printf(“%d”,a);
}

Program Output
10

Here we are declaring a variable a with its initial value 10. 10 here is an […]

C Tutorial - Fundamental Data Types

In this C Tutorial we will learn what Fundamental Data Types are and how to use them.
We develop programs to accept an input from the user and then run the input through a series of processes and produce the output on screen or on the printer, etc.

[…]

Introduction to C Programming

As a programming language, C is rather like Pascal or Fortran. Values are stored in variables. Programs are structured by defining and calling functions. Program flow is controlled using loops, if statements and function calls. Input and output can be directed to the terminal or to files. Related data can be stored together in arrays […]

Top Internet blogs Programming Blogs - Blog Catalog Blog Directory TopOfBlogs Technology blogs Top Blog Topsites List