How to Declare Something in C Programming Language

Before you can use a variable you have to declare it. As we have seen above, to do this you state its type and then give its name. For example, int i; declares an integer variable. You can declare any number of variables of the same type with a single statement. For example:

int a, b, c;

declares three integers: ab and c. You have to declare all the variables that you want to use at the start of the program. Later you will discover that exactly where you declare a variable makes a difference, but for now you should put variable declarations after the opening curly bracket of the main program.


Here is an example program that includes some of the concepts outlined above. It includes a slightly more advanced use of the printf function which will covered in detail in the next part of this course:
/*
/*
Program#int.c

Another simple program

using int and printf

*/
#include <stdio.h>

main()

{

int a,b,average;

a=10;

b=6;

average = ( a+b ) / 2 ;

printf("Here ");

printf("is ");

printf("the ");

printf("answer... ");

printf("\n");

printf("%d.",average);

}


Learn More :