Declarations are built up from the lexical elements described above. A file may contain one of more declarations.
static int add (int a, int b)
int temp1=1;A variable declaration can be outside a function, or at the start of a function.
eg 1 +2 -3
if (a==b) { // nothing } else { a=b; }
Go to the first, previous, next, last section, table of contents.